-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 958 Bytes
/
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
{
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many --target=build",
"test": "nx run-many --target=test",
"test:coverage": "nx run-many --target=test:coverage",
"lint": "nx run-many --target=lint",
"postinstall": "husky install",
"precommit": "nx affected --target=test && nx affected --target=lint",
"publish": "lerna publish",
"prepublishOnly": "npm run lint && npm run test"
},
"devDependencies": {
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lerna": "^7.1.5",
"nx": "^16.6.0",
"prettier": "^3.0.1",
"typescript": "5.1.6",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.2",
"vitest": "^0.34.1"
}
}