-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 KB
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
{
"name": "webgl-webworker",
"version": "1.0.0",
"scripts": {
"rollup-engine": "node ./rollup.js engine ./build/game-engine/main.js",
"rollup-app": "node ./rollup.js app ./entry.js",
"ngc": "./node_modules/.bin/ngc -p ./ngc-config.json",
"aot": "npm run ngc && npm run rollup-app",
"tsc": "./node_modules/.bin/tsc -p ./app",
"start": "npm run tsc && node server.js"
},
"license": "ISC",
"dependencies": {
"@angular/common": "^5.0.1",
"@angular/compiler": "^5.0.1",
"@angular/core": "^5.0.1",
"@angular/forms": "^5.0.1",
"@angular/http": "^5.0.1",
"@angular/platform-browser": "^5.0.1",
"@angular/platform-browser-dynamic": "^5.0.1",
"@angular/router": "^5.0.1",
"core-js": "^2.4.1",
"gl-matrix": "^2.4.0",
"rxjs": "^5.5.6",
"systemjs": "^0.20.19",
"zone.js": "^0.8.8"
},
"devDependencies": {
"@angular/compiler-cli": "^5.0.1",
"@types/body-parser": "0.0.33",
"@types/express": "^4.0.33",
"@types/node": "^8.0.33",
"body-parser": "^1.16.0",
"express": "^4.14.0",
"morgan": "^1.9.0",
"rollup": "^0.53.3",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"source-map-explorer": "^1.5.0",
"typescript": "^2.5.3"
}
}