forked from xiangechen/chili3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "chili3d",
"version": "0.1.0",
"description": "",
"author": "仙阁",
"scripts": {
"build": "npx rspack build",
"dev": "npx rspack dev",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"testc": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"prettier": "npx prettier --write ."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rspack/cli": "^0.7.0",
"@rspack/core": "^0.7.0",
"@types/jest": "^29.5.12",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.0",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.1.0"
}
}