-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "three.ls",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "snowpack dev",
"start-secure": "snowpack dev --secure",
"build": "snowpack build",
"format": "prettier . --write",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@snowpack/plugin-sass": "^1.4",
"stats-js": "^1.0.1",
"three": "^0.158",
"three.meshline": "^1.3"
},
"devDependencies": {
"@snowpack/plugin-typescript": "^1.2.1",
"@types/offscreencanvas": "^2019.7.3",
"@types/snowpack-env": "2.3",
"@types/stats": "^0.16",
"@types/three": "^0.158",
"@typescript-eslint/eslint-plugin": "^6.13",
"@typescript-eslint/parser": "^6.13",
"eslint": "^8.54",
"eslint-config-prettier": "^9.0",
"eslint-plugin-prettier": "^5.0",
"prettier": "^2.5",
"snowpack": "^3",
"ts-loader": "^9",
"typescript": "^5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}