forked from xiangechen/chili3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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.2.0",
"@types/jest": "^29.5.2",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"nanoid": "^4.0.2",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"typescript-plugin-css-modules": "^5.0.1"
}
}