forked from angular/universal-starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.26 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
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
{
"name": "ng-universal-demo",
"version": "4.0.0",
"main": "dist/server.js",
"repository": {
"type": "git",
"url": "https://github.com/angular/universal-starter.git"
},
"contributors": [
"AngularClass <[email protected]>",
"PatrickJS <[email protected]>",
"Jeff Whelpley <[email protected]>",
"Jeff Cross <[email protected]>",
"Mark Pieszak <[email protected]>",
"Jason Jean <[email protected]>"
],
"scripts": {
"start": "npm run build && npm run server",
"build": "webpack",
"build:aot": "webpack --env.aot --env.client & webpack --env.aot --env.server",
"build:prod": "webpack --env.aot --env.client -p & webpack --env.aot --env.server",
"prebuild": "npm run clean",
"prebuild:aot": "npm run clean",
"prebuild:prod": "npm run clean",
"clean": "rimraf dist",
"server": "nodemon dist/server.js",
"watch": "webpack --watch"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.4.0-RC.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@angular/router": "^4.0.0",
"@nguniversal/express-engine": "^1.0.0-beta.2",
"d3": "^4.10.1",
"express": "^4.15.2",
"jquery": "^3.2.1",
"jquery-ui": "^1.12.1",
"moment": "^2.18.1",
"rxjs": "^5.4.0",
"serialize-javascript": "^1.3.0",
"xhr2": "^0.1.4",
"zone.js": "^0.8.10"
},
"devDependencies": {
"@angular/compiler-cli": "^4.0.0",
"@ngtools/webpack": "^1.3.1",
"@types/d3": "^4.10.0",
"@types/express": "^4.0.35",
"@types/jquery": "^3.2.12",
"@types/jqueryui": "^1.11.36",
"@types/moment": "^2.13.0",
"@types/node": "^7.0.18",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.28.0",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"script-ext-html-webpack-plugin": "^1.7.1",
"style-loader": "^0.18.2",
"typescript": "^2.3.2",
"webpack": "3.3.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
}
}