-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 968 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": "shaders",
"version": "1.0.0",
"description": "building my graphics tools",
"main": "none",
"scripts": {
"start": "vite",
"build": "vite build",
"deploy": "npm run build --silent && gh-pages -d dist",
"postinstall": "patch-package",
"prepare": "git config core.hooksPath $(pwd)/.githooks",
"serve": "vite preview"
},
"author": "Greg Fagan",
"license": "UNLICENSED",
"dependencies": {
"dat.gui": "^0.7.7",
"flyd": "^0.2.8",
"fp-ts": "^2.10.2",
"gl-matrix": "^3.3.0",
"ramda": "^0.27.1",
"regl": "^2.1.0",
"stats.js": "^0.17.0",
"tone": "^14.7.77"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"proseWrap": "always"
},
"devDependencies": {
"@types/dat.gui": "^0.7.6",
"@types/ramda": "^0.27.40",
"@types/stats.js": "^0.17.0",
"gh-pages": "^3.1.0",
"patch-package": "^6.4.7",
"typescript": "^4.2.4",
"vite": "^2.1.5"
}
}