-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.01 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "Angular2-Aot",
"version": "0.0.0",
"description": "A demo project to illustrate how Angular2 Ahead-of-Time (AoT) Compilation works",
"homepage": "https://github.com/JayKan/angular2-aot",
"repository": {
"type": "git",
"url": "git+https://github.com/JayKan/angular2-aot.git"
},
"author": {
"name": "Jay Kan",
"email": "leicasper@gmail.com"
},
"scripts": {
"clean": "del-cli build public",
"sass": "node-sass src -o src --output-style compressed",
"sass:watch": "node-sass -w src -o src --output-style compressed",
"build": "run-s build:ngc build:prod",
"build:ngc": "ngc",
"build:dev": "cross-env NODE_ENV=development webpack-dev-server",
"build:prod": "cross-env NODE_ENV=production webpack --display-chunks --progress",
"prebuild": "npm run clean && npm run sass",
"server": "cross-env NODE_ENV=development nodemon -w 'server/**/*.*' ./server/main.js",
"production": "npm run build && npm run server",
"development": "npm-run-all -p -r build:dev sass:watch",
"start": "npm run sass && npm run development",
"postinstall": "npm run sass",
"firebase:login": "firebase login",
"firebase:use": "firebase use",
"firebase:deploy": "firebase deploy"
},
"license": "MIT",
"engines": {
"node": ">=5.11",
"npm": ">3.x"
},
"dependencies": {
"compression": "^1.6.2",
"connect-gzip-static": "^1.0.0",
"express": "^4.14.0",
"helmet": "^2.2.0",
"serve-favicon": "^2.3.0",
"winston": "^2.2.0"
},
"devDependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/compiler-cli": "0.6.2",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/platform-server": "2.0.0",
"@angular/router": "3.0.0",
"@types/hammerjs": "^2.0.33",
"@types/jasmine": "^2.2.34",
"@types/node": "^6.0.40",
"@types/source-map": "^0.1.27",
"@types/uglify-js": "^2.6.28",
"@types/webpack": "^1.12.34",
"angular2-template-loader": "^0.5.0",
"angularfire2": "2.0.0-beta.5",
"autoprefixer": "^6.4.1",
"awesome-typescript-loader": "^2.2.4",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^3.0.1",
"core-js": "^2.4.1",
"cross-env": "^2.0.1",
"del-cli": "^0.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"firebase": "3.3.0",
"firebase-tools": "^3.0.7",
"html-webpack-plugin": "^2.22.0",
"ie-shim": "^0.1.0",
"json-loader": "^0.5.4",
"morgan": "^1.7.0",
"node-sass": "^3.10.0",
"nodemon": "^1.10.2",
"npm-run-all": "^3.1.0",
"postcss-loader": "^0.13.0",
"raw-loader": "^0.5.1",
"rxjs": "5.0.0-beta.12",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-helpers": "~1.1.1",
"typescript": "~2.0.2",
"webpack": "2.1.0-beta.25",
"webpack-dev-server": "2.1.0-beta.4",
"webpack-md5-hash": "~0.0.5",
"zone.js": "~0.6.25"
}
}