-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
55 lines (55 loc) · 1.94 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
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">= 10"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"esbuild": "^0.15.10",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"lerna": "^5.1.1",
"lint-staged": "11.2.3",
"prettier": "^2.6.2",
"shx": "^0.3.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"scripts": {
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"start:web3-react": "lerna run start --scope=web3-react-starter",
"start:web-demo": "lerna run start --scope=web-demo",
"start:web-demo:authLocal": "lerna run start:authLocal --scope=web-demo",
"deploy:dev:web-demo": "./packages/web-demo/dev_deploy.sh",
"deploy:staging:web-demo": "./packages/web-demo/staging_deploy.sh",
"deploy:production:web-demo": "./packages/web-demo/production_deploy.sh",
"test": "lerna run test",
"lint": "eslint packages/**/src --no-error-on-unmatched-pattern --ext .ts,.tsx -c .eslintrc.json",
"ts-node": "ts-node",
"prettier": "prettier --write 'packages/*/src/**/*.{js,ts,tsx,css,less}' 'packages/*/pages/**/*.{js,ts,tsx,css,less}' 'packages/*/*.{json,js}'",
"upgrade:particle": "node updateVersion.js"
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,json,css,scss}": [
"prettier --write",
"git add"
]
}
}