-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
66
67
68
69
70
71
72
{
"name": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "corepack yarn install",
"clean": "lerna run clean --parallel",
"build": "sh ./scripts/build.sh",
"build:dist": "lerna run build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./ --fix",
"release": "lerna publish from-package",
"prettify:packages": "lerna exec -- sort-package-json && sort-package-json",
"prettify:code": "run-s lint:fix",
"prettify": "run-s prettify:*",
"prepare": "husky install",
"test": "lerna run test",
"verify": "lerna run verify --parallel",
"version": "lerna version",
"publish-all": "lerna publish from-package",
"lint-staged": "lint-staged",
"nuke": "rm -rf node_modules; for d in packages/*/node_modules; do echo $d; rm -r $d; done"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/src/package.json": "yarn run prettify:packages",
"package.json": "yarn run prettify:packages",
"*.js,*.jsx,*.ts,*.tsx": "yarn run lint:fix"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"axios": "^0.27.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^53.0.0",
"ethers": "^5.4.7",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lerna": "^7.4.2",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.0",
"sort-package-json": "^1.50.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}