-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
36
37
38
39
40
41
42
43
44
45
{
"name": "ts-raytracer",
"version": "1.0.0",
"description": "Typescript Webgl2 Raytracer",
"main": "index.html",
"scripts": {
"watch": "npm run build -- --watch",
"build": "webpack --progress --colors --mode=production",
"builddev": "webpack --progress --colors --mode=development",
"dev": "webpack-dev-server --content-base ./ --colors --hot --inline --mode=development",
"dev2": "npm run dev -- --host=0.0.0.0",
"gh-publish": "npm run builddev&&cd dist&&git add --all&&git commit -m \"Deploy to gh-pages\"&&git push origin gh-pages&&cd.."
},
"author": "Chris Boyd",
"license": "MIT",
"repository": {
"type": "git"
},
"prettier": {
"tabWidth": 4,
"useTabs": false,
"printWidth": 120,
"parser": "typescript"
},
"devDependencies": {
"@types/emscripten": "0.0.31",
"@types/gl-matrix": "^2.4.4",
"@types/node": "^10.12.18",
"@types/webgl2": "^0.0.4",
"copy-webpack-plugin": "^4.6.0",
"fast-random": "^2.0.4",
"gl-matrix": "^2.8.1",
"html-webpack-plugin": "^3.2.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-optipng": "^6.0.0",
"imagemin-webpack": "^4.0.1",
"raw-loader": "^1.0.0",
"ts-loader": "^5.3.2",
"typescript": "^3.2.2",
"uglifyjs-webpack-plugin": "^2.1.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.13"
}
}