forked from Samitier/angular2Game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "app-client",
"version": "0.0.0",
"private": true,
"dependencies": {
"@angular/common": "2.4.2",
"@angular/compiler": "2.4.2",
"@angular/core": "2.4.2",
"@angular/forms": "2.4.2",
"@angular/http": "2.4.2",
"@angular/platform-browser": "2.4.2",
"@angular/platform-browser-dynamic": "2.4.2",
"@angular/router": "3.4.2",
"core-js": "^2.4.1",
"rxjs": "5.0.1",
"zone.js": "0.7.4",
"body-parser": "~1.13.2",
"compression": "^1.6.1",
"cookie-parser": "~1.3.5",
"express": "~4.13.1"
},
"devDependencies": {
"@types/node": "^6.0.45",
"@types/jasmine": "^2.5.35",
"css-loader": "^0.26.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.24.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"style-loader": "^0.13.1",
"ts-loader": "1.3.3",
"typescript": "^2.0.10",
"webpack": "^1.13.3"
},
"scripts": {
"heroku-postbuild": "webpack -p --config ./webpack.config.js --progress",
"start": "node ./server/main.js",
"build": "webpack",
"dev": "webpack-dev-server --inline --hot --history-api-fallback --no-info --open --colors"
},
"engines": {
"node": "^6.0.0",
"npm": "^3.0.0"
}
}