-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 KB
/
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
{
"name": "webgl-webpack-boilerplate",
"version": "1.2.0",
"private": true,
"description": "A boilerplate webpack project for getting started with WebGL",
"scripts": {
"build": "NODE_ENV=production webpack -p --progress --colors",
"watch": "webpack --progress --colors --watch",
"dev": "webpack-dev-server --content-base dist/ --colors --hot --inline",
"start": "node server.js",
"heroku-postbuild": "webpack -p"
},
"author": "Dale Karp <[email protected]> (http://dale.io)",
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/daleee/webgl-webpack-boilerplate"
},
"dependencies": {
"babel-core": "^6.1.19",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"html-webpack-plugin": "^2.8.1",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.12.1",
"webpack-glsl-loader": "^1.0.1",
"@types/dat.gui": "^0.7.4",
"@types/gl-matrix": "^2.4.5",
"dat.gui": "^0.7.6",
"gl-matrix": "^3.1.0"
},
"devDependencies": {
"file-loader": "^4.2.0"
}
}