-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "ng2-universal-seed",
"version": "0.0.0",
"description": "Seed project for Angular 2 universal",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "./node_modules/.bin/tsc -w & ./node_modules/.bin/webpack --watch",
"build": "./node_modules/.bin/tsc && ./node_modules/.bin/webpack",
"prestart": "npm run build",
"start": "node server.js",
"universal": "./node_modules/.bin/tsc -p ./node_modules/angular2-universal-preview",
"watch-universal": "./node_modules/.bin/tsc -w -p ./node_modules/angular2-universal-preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbabaioff/ng2-universal-seed.git"
},
"keywords": [
"angular2",
"universal"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dbabaioff/ng2-universal-seed/issues"
},
"homepage": "https://github.com/dbabaioff/ng2-universal-seed#readme",
"dependencies": {
"angular2": "2.0.0-beta.0",
"angular2-universal-preview": "0.24.0",
"express": "4.13.3",
"xhr2": "0.1.3"
},
"devDependencies": {
"ts-loader": "0.7.2",
"typescript": "1.7.5",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
}
}