-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 907 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
{
"name": "garden3d",
"license": "MIT",
"scripts": {
"start": "parcel src/*.html",
"build": "NODE_ENV=production parcel build src/*.html"
},
"dependencies": {
"@generative-music/utilities": "^5.1.0",
"@generative-music/web-library": "^0.2.2",
"@generative-music/web-provider": "^3.0.0",
"@sanctucompu/basement": "^1.2.0",
"gsap": "^3.6.0",
"pixi.js": "^5.3.7",
"tone": "^14.7.77"
},
"devDependencies": {
"firebase-tools": "^11.16.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"parcel-bundler": "^1.12.4",
"posthtml-include": "^1.6.2",
"prettier": "^2.1.2",
"sass": "^1.27.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,scss,css,md,html}": [
"prettier --write"
]
}
}