-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 750 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 750 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
{
"private": true,
"name": "4k-demo-oven",
"version": "1.0.0",
"description": "Demo framework.",
"scripts": {
"build": "node scripts/build.js",
"clean": "node scripts/clean.js",
"capture": "node scripts/capture.js",
"precommit": "lint-staged",
"watch": "nodemon -e * -w demo -w engine -w scripts scripts/build.js -n"
},
"dependencies": {
"fs-extra": "^5.0.0",
"glsl-unit": "^0.0.7",
"nconf": "^0.10.0",
"nconf-yaml": "^1.0.2",
"node-notifier": "^5.1.2",
"nodemon": "^1.17.3",
"yargs": "^11.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}