-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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
{
"name": "gunnar-farneback",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier . --cache",
"format:fix": "yarn format --write",
"format:check": "yarn format --check",
"lint": "eslint . --cache --max-warnings 0",
"lint:fix": "yarn lint --fix",
"lint:check": "yarn lint",
"type:check": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"mathjs": "^11.8.2",
"twgl.js": "^5.3.1"
},
"devDependencies": {
"@types/stats.js": "^0.17.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lil-gui": "^0.18.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"stats.js": "^0.17.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vitest": "^0.33.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix --max-warnings 0",
"*.{js,ts,css,htm,html,md}": "prettier --cache --write"
}
}