-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 922 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
34
35
36
37
38
39
40
41
42
43
{
"name": "particle-life",
"version": "0.0.1",
"description": "Game of Life with particles",
"author": "Christian Petersen <chrs@cbp.io> (http://cbp.io)",
"license": "MIT",
"repository": "fnky/particle-life",
"keywords": [
"game",
"particles",
"canvas",
"web"
],
"scripts": {
"start": "canvas-sketch src/index.js --hot --open",
"build": "canvas-sketch src/index.js --build --dir public/",
"format": "prettier --write **/*.{js,json,md}",
"deploy": "GIT_DEPLOY_DIR=public bash deploy.sh"
},
"dependencies": {
"canvas-sketch": "^0.7.4",
"dat.gui": "^0.7.7",
"prob.js": "^1.0.6",
"random-js": "^2.1.0"
},
"devDependencies": {
"canvas-sketch-cli": "^1.11.9",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}