forked from TalismanSociety/signet-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"private": true,
"name": "talisman-web",
"license": "GPL-3.0-or-later",
"packageManager": "yarn@3.4.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "husky install",
"dev": "yarn turbo run dev",
"build": "yarn turbo run build",
"test": "yarn turbo run test",
"lint": "echo \"skipping until fixed\"",
"check-types": "echo \"skipping until fixed\"",
"e2e": "yarn turbo run e2e",
"storybook": "yarn turbo run storybook",
"build-storybook": "yarn turbo run storybook",
"build-signet:docker": "docker build -t signet-fe -f apps/multisig/Dockerfile ."
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"prettier": "^2.8.6",
"pretty-quick": "^3.1.3",
"turbo": "^1.8.2"
},
"resolutions": {
"@polkadot/api": "12.0.2",
"@polkadot/api-augment": "12.0.2",
"@polkadot/api-base": "12.0.2",
"@polkadot/api-contract": "12.0.2",
"@polkadot/api-derive": "12.0.2",
"@polkadot/rpc-augment": "12.0.2",
"@polkadot/rpc-core": "12.0.2",
"@polkadot/rpc-provider": "12.0.2",
"@polkadot/typegen": "12.0.2",
"@polkadot/types-augment": "12.0.2",
"@polkadot/types-codec": "12.0.2",
"@polkadot/types-create": "12.0.2",
"@polkadot/types-known": "12.0.2",
"@polkadot/types-support": "12.0.2",
"@polkadot/types": "12.0.2",
"json-stream-stringify": "2.0.4",
"recoil@^0.7.7": "patch:recoil@npm%3A0.7.7#./.yarn/patches/recoil-npm-0.7.7-4452f58b67.patch",
"threads@^1.7.0": "patch:threads@npm%3A1.7.0#./.yarn/patches/threads-npm-1.7.0-c432dbb3e9.patch"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}