-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 871 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
{
"name": "3d-engine",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "npx simple-git-hooks",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test-unit": "vitest",
"lint": "eslint . --ext .js,.ts --fix --ignore-path .gitignore",
"fmt": "prettier -w . --ignore-path .gitignore",
"fmt-check": "prettier -c . --ignore-path .gitignore"
},
"devDependencies": {
"@types/node": "20.10.1",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"eslint": "8.54.0",
"eslint-define-config": "2.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"ml-matrix": "6.10.8",
"prettier": "3.1.0",
"simple-git-hooks": "2.9.0",
"typescript": "5.3.2",
"vite": "5.0.4",
"vitest": "0.34.6"
},
"simple-git-hooks": {
"pre-commit": "npm run lint\nnpm run fmt"
}
}