-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 844 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
{
"name": "webgl-julia-viewer",
"version": "1.0.0",
"description": "Realtime Julia Set Renderer using WebGL",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-serve webpack.config.js",
"build": "webpack --config webpack.config.js --mode=production",
"postinstall": "npm run build"
},
"keywords": [],
"author": "ekzhang",
"private": true,
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/dat.gui": "^0.7.1",
"@types/hammerjs": "^2.0.36",
"@types/webgl2": "0.0.4",
"dat.gui": "^0.7.2",
"hammerjs": "^2.0.8",
"raw-loader": "^0.5.1",
"ts-loader": "^4.4.2",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"webpack": "^4.16.0",
"webpack-command": "^0.4.1",
"webpack-serve": "^2.0.2"
}
}