-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.72 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
85
86
87
{
"name": "mean-start",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"ng": "ng",
"postinstall": "npm run build",
"build": "rimraf dist && ng build && tsc --project server/tsconfig.app.json",
"start": "pm2 start dist/www.js --no-daemon",
"build-start": "npm run build && npm start",
"dev": "concurrently \"ng serve --progress false --proxy-config proxy.conf.json\" \"npm run api\" ",
"api": "cd server && nodemon --ext ts --ignore *.spec.ts --exec ts-node www",
"test": "concurrently \"ng test --progress false\" \"npm run test-server\" ",
"test-ng": "ng test",
"test-server": "cd server && nodemon --ext ts --exec jasmine-ts **/*[!.api].spec.ts",
"test-api": "cd server && nodemon --ext ts --exec jasmine-ts **/*.api.spec.ts",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/cli": "1.0.0-rc.2",
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/compiler-cli": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/forms": "^2.4.0",
"@angular/http": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"@angular/router": "^3.4.0",
"@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.18",
"@types/body-parser": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/debug": "0.0.29",
"@types/express": "^4.0.34",
"@types/mongoose": "^4.7.1",
"@types/morgan": "^1.7.32",
"@types/node": "~6.0.60",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"axios": "^0.15.3",
"body-parser": "^1.15.2",
"bootstrap": "4.0.0-alpha.6",
"cookie-parser": "^1.4.3",
"core-js": "^2.4.1",
"debug": "^2.3.3",
"express": "^4.14.0",
"font-awesome": "^4.7.0",
"mongoose": "^4.7.2",
"morgan": "^1.7.0",
"pm2": "^2.4.0",
"require-all": "^2.1.0",
"rimraf": "^2.6.1",
"rxjs": "^5.1.0",
"socket.io": "^1.7.2",
"typescript": "~2.0.0",
"zone.js": "^0.7.6"
},
"devDependencies": {
"@types/jasmine": "2.5.38",
"@types/nock": "^8.2.1",
"@types/supertest": "^2.0.0",
"codelyzer": "~2.0.0",
"concurrently": "^3.1.0",
"jasmine": "2.5.2",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"jasmine-ts": "0.0.3",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-coverage-istanbul-reporter": "^0.2.0",
"nock": "^9.0.9",
"node-mocks-http": "^1.6.1",
"nodemon": "^1.11.0",
"protractor": "~5.1.0",
"supertest": "^3.0.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0"
},
"engines": {
"node": "6.9.2"
}
}