-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 996 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 996 Bytes
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
{
"name": "webxr-layers",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "snowpack dev",
"build": "snowpack build && cp _redirects build/_redirects",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"localtunnel": "^2.0.1",
"pretty-quick": "^3.1.0",
"snowpack": "^3.0.11"
},
"dependencies": {
"randomcolor": "^0.6.2",
"stats-js": "^1.0.1",
"three": "^0.125.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"pretty-quick --staged"
]
}
}