-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
64 lines (64 loc) · 2.49 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
{
"name": "@chainsafe/ui-monorepo",
"version": "1.0.0",
"description": "Chainsafe Files UI monorepo",
"main": "index.js",
"repository": "https://github.com/chainsafe/ui-monorepo.git",
"author": "Chainsafe Products Team",
"license": "MIT",
"private": true,
"engines": {
"node": ">=12",
"yarn": ">=1"
},
"dependencies": {},
"devDependencies": {
"@sentry/cli": "1.60.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^4.15.2",
"chalk": "^4.1.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-ternary": "^1.0.4",
"npm-run-all": "^4.1.5",
"typescript": "^4.0.5",
"wsrun": "^5.2.4"
},
"scripts": {
"postinstall": "yarn build:common",
"build:common": "yarn build:theme && yarn build:components",
"build:contexts": "yarn wsrun -t -p @chainsafe/common-contexts -c build",
"build:components": "yarn wsrun -t -p @chainsafe/common-components -c build",
"build:theme": "yarn wsrun -t -p @chainsafe/common-theme -c build",
"build:storybook": "yarn wsrun -p @chainsafe/common-components -c build:storybook",
"start:storybook": "yarn wsrun -p @chainsafe/common-components -c storybook",
"build:files-ui": "yarn wsrun -p files-ui -c build",
"release:files-ui": "yarn wsrun -p files-ui -c release",
"start:files-ui": "yarn wsrun -p files-ui -c start",
"build:storage-ui": "yarn wsrun -p storage-ui -c build",
"release:storage-ui": "yarn wsrun -p storage-ui -c release",
"start:storage-ui": "yarn wsrun -p storage-ui -c start",
"clean:dependencies": "rm -rf ./node_modules && rm -rf ./*/**/node_modules",
"clean:dist": "rm -rf ./*/**/dist && rm -rf ./*/**/build && rm -rf ./*/**/storybook-static",
"clean": "yarn clean:dependencies && yarn clean:dist",
"start:tunnel": "./ngrok http https://localhost:3000",
"lint": "eslint 'packages/**/{src, cypress}/**/*.{js,jsx,ts,tsx}'",
"serve:files-ui": "npx serve packages/files-ui/build -p 3000",
"test:files-ui": "yarn wsrun -p files-ui -c test",
"test:ci:files-ui": "yarn wsrun -p files-ui -c test:ci",
"test:storage-ui": "yarn wsrun -p storage-ui -c test",
"test:ci:storage-ui": "yarn wsrun -p storage-ui -c test:ci"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/webpack-dev-server",
"**/react-scripts"
]
}
}