-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "Pokedex",
"version": "1.0.0",
"description": "Pokemon GO Pokedex implemented in Angular2",
"author": {
"name": "Jay Kan",
"email": "[email protected]"
},
"scripts": {
"clean": "del-cli ./target",
"typings": "typings install",
"postinstall": "npm run typings",
"build:dev": "cross-env NODE_ENV=development webpack-dev-server --progress",
"build:prod": "cross-env NODE_ENV=production webpack --display-chunks --progress",
"server": "cross-env NODE_ENV=development nodemon -w 'server/**/*.*' ./server/main.js",
"production": "npm run clean && npm run build:prod && npm run server",
"development": "npm run build:dev",
"start": "npm run development"
},
"license": "MIT",
"engines": {
"node": ">=5.11",
"npm": ">3.x"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@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/router": "3.0.0",
"core-js": "^2.4.1",
"zone.js": "0.6.21",
"rxjs": "5.0.0-beta.12"
},
"devDependencies": {
"autoprefixer": "~6.3.6",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "~2.0.0",
"css-loader": "~0.23.1",
"del-cli": "^0.2.0",
"express": "~4.14.0",
"extract-text-webpack-plugin": "~1.0.1",
"html-webpack-plugin": "~2.22.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.7.0",
"morgan": "~1.7.0",
"node-sass": "~3.8.0",
"nodemon": "~1.9.2",
"postcss-loader": "~0.9.1",
"raw-loader": "~0.5.1",
"sass-loader": "~4.0.0",
"style-loader": "~0.13.1",
"ts-loader": "~0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "~1.13.1",
"webpack-dev-server": "~1.14.1",
"webpack-md5-hash": "~0.0.5",
"winston": "~2.2.0"
}
}