-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 959 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
{
"name": "voxel-moxel.ts",
"version": "0.1.0",
"description": "just for fun voxel game coded on typescript on top of webgl",
"main": "src/index.tsx",
"repository": "https://github.com/geakstr/voxel-moxel.ts",
"author": "Dmitry Kharitonov <geakstr@me.com>",
"license": "MIT",
"private": false,
"scripts": {
"test": "exit 0",
"start": "snowpack dev",
"build": "snowpack build",
"deploy": "npm run build && npm run surge",
"surge": "surge --project ./build --domain voxel-moxel.dkharitonov.me"
},
"devDependencies": {
"@snowpack/plugin-sass": "1.2.0",
"@snowpack/plugin-typescript": "1.1.1",
"@types/async": "3.2.5",
"@types/ndarray": "1.0.8",
"snowpack": "^3.0.0-rc.2",
"surge": "0.21.7",
"typescript": "4.1.3"
},
"dependencies": {
"async": "3.2.0",
"date-fns": "2.16.1",
"gl-matrix": "3.3.0",
"ndarray": "1.0.19",
"react": "17.0.1",
"react-dom": "17.0.1"
}
}