forked from pannacotta98/procedural-planet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 815 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
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "echo \"This template does not include a test runner by default.\" && exit 1",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "prettier --check \"src/**/*.{ts,js}\"",
"deploy": "snowpack build && gh-pages -d build --dotfiles"
},
"dependencies": {
"canvas-confetti": "^1.2.0",
"lodash": "^4.17.21",
"three": "^0.134.0"
},
"devDependencies": {
"@snowpack/plugin-typescript": "^1.2.1",
"@types/canvas-confetti": "^1.0.0",
"@types/lodash": "^4.14.178",
"@types/snowpack-env": "^2.3.3",
"@types/three": "^0.134.0",
"gh-pages": "^3.2.3",
"prettier": "^2.2.1",
"snowpack": "^3.3.7",
"snowpack-plugin-glslify": "^1.0.0",
"typescript": "^4.2.4"
}
}