-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
126 lines (126 loc) · 3.57 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "octotrails-qcontrol",
"version": "0.0.1",
"description": "oSoc18 Octotrails project",
"author": "octotrails",
"keywords": [
"angular",
"angular6",
"api",
"express",
"rest",
"webapp",
"pwa",
"mongoose"
],
"scripts": {
"ng": "ng",
"build": "ng build --prod --build-optimizer --ngsw-config-path ./src/web-app/ngsw-config.json --output-path src/web-api/public/",
"start:server": "nodemon src/server-start.js",
"start:ng": "ng serve --host 0.0.0.0 -o",
"start:prod": "NODE_ENV=production pm2 start src/server-start.js -i max --node-args=\"--max_old_space_size=500 --harmony\" ",
"start": "concurrently \"npm run start:ng\" \"npm run start:server\"",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.json"
},
"babel": {
"presets": [
"es2015",
"es2017"
],
"plugins": [
"transform-es2015-destructuring",
"transform-object-rest-spread",
"syntax-async-functions"
]
},
"nodemonConfig": {
"ignore": [
"./**/*.spec*",
"assets/*",
"docs/*",
"test/*"
],
"delay": "1500",
"restartable": "rs",
"execMap": {
"js": "node --harmony"
},
"ext": "js json"
},
"dependencies": {
"@angular/animations": "^6.0.7",
"@angular/cdk": "^6.2.0",
"@angular/compiler": "^6.0.7",
"@angular/core": "^6.0.7",
"@angular/forms": "^6.0.7",
"@angular/http": "^6.0.7",
"@angular/material": "^6.2.0",
"@angular/platform-browser": "^6.0.7",
"@angular/platform-browser-dynamic": "^6.0.7",
"@angular/pwa": "^0.6.8",
"@angular/router": "^6.0.7",
"@angular/service-worker": "^6.0.0",
"app-root-path": "^2.0.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.4",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-async-handler": "^1.1.3",
"express-jwt": "^5.3.1",
"express-validator": "^5.2.0",
"hammerjs": "^2.0.8",
"helmet": "^3.12.0",
"http-status": "^1.1.0",
"joi": "^13.3.0",
"jsonwebtoken": "^8.3.0",
"mapbox-gl": "^0.47.0-beta.1",
"method-override": "^2.3.10",
"mongoose": "^5.1.0",
"path": "^0.12.7",
"pm2": "^3.0.0",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.2.1",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.0",
"@angular/cli": "^6.0.8",
"@angular/common": "^6.0.7",
"@angular/compiler-cli": "^6.0.7",
"@angular/language-service": "^6.0.7",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/mapbox-gl": "^0.45.2",
"@types/node": "~8.9.4",
"angular-in-memory-web-api": "^0.6.0",
"codelyzer": "~4.2.1",
"concurrently": "^3.5.1",
"express-debug": "^1.1.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^2.0.4",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.9.2",
"nodemon": "^1.17.5",
"protractor": "^5.3.2",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": ">=2.7.2 <2.8.0"
}
}