-
Notifications
You must be signed in to change notification settings - Fork 232
/
package.json
84 lines (84 loc) · 2.6 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
77
78
79
80
81
82
83
84
{
"name": "angular2-express-starter",
"version": "1.0.0",
"description": "Starter application of Angular4 with Express",
"main": "server/app.js",
"license": "MIT",
"scripts": {
"start": "concurrently --kill-others \"npm run server:run\" \"ng serve --aot --progress=false --proxy-config proxy.conf.json\"",
"lint:client": "ng lint",
"lint:server": "tslint './server/**/*.ts' -c ./server/tslint.json --fix",
"test:client": "ng test --watch false",
"e2e:client": "ng e2e",
"build": "ng build --prod --sm=false --aot --output-path=dist/client && npm run server:build",
"server:run": "nodemon",
"server:build": "tsc -p ./server",
"postinstall": "npm run build"
},
"author": "Vlado Tešanović",
"engines": {
"node": "8.9.1",
"npm": "5.2.0"
},
"repository": {
"url": "https://github.com/vladotesanovic/angular2-express-starter"
},
"private": true,
"dependencies": {
"@angular/cli": "^1.6.0",
"@angular/common": "^5.1.0",
"@angular/compiler": "^5.1.0",
"@angular/compiler-cli": "^5.1.0",
"@angular/language-service": "^5.1.0",
"@angular/core": "^5.1.0",
"@angular/forms": "^5.1.0",
"@angular/http": "^5.1.0",
"@angular/platform-browser": "^5.1.0",
"@angular/platform-browser-dynamic": "^5.1.0",
"@angular/router": "^5.1.0",
"@ngrx/effects": "^4.1.1",
"@ngrx/store": "^4.1.1",
"@ngrx/store-devtools": "^4.1.1",
"@types/body-parser": "^1.16.3",
"@types/compression": "^0.0.33",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.35",
"@types/jasmine": "2.5.38",
"@types/jsonwebtoken": "^7.2.0",
"@types/node": "~6.0.60",
"@types/uuid": "^2.0.29",
"body-parser": "~1.17.1",
"compression": "^1.6.2",
"cookie-parser": "~1.3.5",
"core-js": "^2.4.1",
"express": "^4.15.2",
"express-jwt": "^5.1.0",
"jsonwebtoken": "^7.3.0",
"ngrx-store-freeze": "^0.2.0",
"normalize.css": "^5.0.0",
"path": "^0.12.7",
"rxjs": "^5.4.2",
"ts-helpers": "^1.1.2",
"ts-node": "~3.3.0",
"tslint": "^5.8.0",
"typescript": "~2.4.0",
"uuid": "^3.0.1",
"zone.js": "^0.8.14"
},
"devDependencies": {
"codelyzer": "~4.0.1",
"concurrently": "^3.5.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.5.0",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-remap-istanbul": "^0.2.1",
"nodemon": "^1.11.0",
"protractor": "~5.1.0",
"webdriver-manager": "10.2.5"
}
}