forked from Vivek205/snet-dapp-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.25 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
58
59
60
61
62
63
64
65
{
"name": "snet-dapp",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@sentry/browser": "^5.11.2",
"web3": "1.2.2"
},
"devDependencies": {
"@material-ui/core": "^4.4.0",
"@material-ui/icons": "^4.1.0",
"@material-ui/styles": "^4.0.2",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^2.7.0",
"lerna": "^3.19.0",
"lint-staged": "^8.2.0",
"material-ui-flat-pagination": "^4.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.1",
"react-helmet": "^5.2.1",
"react-scripts": "3.2.0",
"typescript": "^3.7.3",
"snet-sdk-web": "^1.0.0-beta.20"
},
"scripts": {
"start:marketplace": "cd packages/marketplace-dapp && yarn start",
"start:rfai": "cd packages/rfai-dapp && yarn start",
"start:publisher": "cd packages/publisher-dapp && yarn start",
"start:stake": "cd packages/stake-dapp && yarn start",
"build:marketplace": "cd packages/marketplace-dapp && yarn build",
"build:publisher": "cd packages/publisher-dapp && yarn build",
"build:stake": "cd packages/stake-dapp && yarn build",
"build:rfai": "cd packages/rfai-dapp && yarn build",
"build:shared": "lerna exec --scope shared -- babel src -d dist --copy-files --delete-dir-on-start --no-copy-ignored --ignore **/*.stories.js ",
"storybook": "lerna exec --scope shared -- yarn run storybook",
"build:storybook": "lerna exec --scope shared -- yarn run build-storybook",
"lint": "eslint .",
"lint:fix-publisher": "eslint packages/publisher-dapp/. --fix",
"lint:fix-shared": "eslint packages/shared/. --fix",
"lint:fix": "eslint . --fix",
"nuke": "rm -r node_modules ; for d in packages/*/node_modules; do echo $d; rm -r $d; done",
"link:all": "lerna exec -- yarn link"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"peerDependencies": {
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0"
}
}