-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "sway-dashboard",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run build:w",
"build": "rm -rf aot static/app*.gz; rollup -c rollup-config.js",
"build:w": "rm -rf aot static/app*.gz; rollup -c rollup-config.js --watch",
"build:p": "rm -rf aot; ngc && NODE_ENV=production rollup -c rollup-config.js && rm -rf static/app*.gz; gzip -9v static/app.js*",
"postinstall": "echo running npm run build && npm run build:p",
"tsc": "tsc",
"typings": "typings",
"ngc": "ngc",
"rollup": "rollup -c rollup-config.js"
},
"license": "private",
"dependencies": {
"@angular/animations": "^4.3.3",
"@angular/common": "^4.3.3",
"@angular/compiler": "^4.3.3",
"@angular/compiler-cli": "^4.3.3",
"@angular/core": "^4.3.3",
"@angular/forms": "^4.3.3",
"@angular/http": "^4.3.3",
"@angular/platform-browser": "^4.3.3",
"@angular/platform-browser-dynamic": "^4.3.3",
"@angular/platform-server": "^4.3.3",
"@angular/router": "^4.3.3",
"@types/core-js": "^0.9.41",
"@types/node": "^7.0.12",
"core-js": "2.4.1",
"ng2-img-cropper": "^0.9.0",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "0.8.1",
"rollup-plugin-uglify": "1.0.1",
"rollup-watch": "3.2.2",
"rxjs": "^5.3.0",
"typescript": "^2.2.2",
"zone.js": "^0.8.5"
}
}