forked from angular/universal-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "angular2-universal-starter",
"version": "2.0.0",
"description": "Angular 2 Universal starter kit by @AngularClass",
"repository": {
"type": "git",
"url": "https://github.com/angular/universal-starter.git"
},
"scripts": {
"postinstall": "./node_modules/.bin/typings install",
"watch": "./node_modules/.bin/webpack --watch",
"prebuild": "./node_modules/.bin/rimraf dist",
"build": "./node_modules/.bin/webpack",
"prestart": "npm run build",
"start": "./node_modules/.bin/nodemon dist/server/bundle.js",
"predebug": "npm run build",
"debug": "node --debug-brk dist/server/bundle.js"
},
"license": "MIT",
"contributors": [
"AngularClass <hello@angularclass.com>",
"PatrickJS <patrick@angularclass.com>",
"Jeff Whelpley <jeff@gethuman.com>",
"Jeff Cross <crossj@google.com>"
],
"dependencies": {
"angular2": "2.0.0-beta.8",
"angular2-universal-preview": "~0.70.6",
"css": "2.2.1",
"es6-shim": "^0.33.3",
"express": "^4.13.3",
"parse5": "^1.5.0",
"preboot": "~1.1.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"xhr2": "^0.1.3",
"zone.js": "0.5.15"
},
"devDependencies": {
"nodemon": "^1.8.1",
"rimraf": "^2.5.0",
"ts-loader": "^0.8.1",
"typescript": "^1.8.7",
"typings": "^0.6.8",
"webpack": "^1.12.10",
"webpack-dev-server": "^1.14.0",
"webpack-merge": "^0.7.1"
}
}