-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.14 KB
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
{
"name": "android-networktrace-ui",
"version": "0.0.0",
"main": "src-api/server.ts",
"scripts": {
"ng": "ng",
"ui-start-server": "lite-server",
"ui-start": "ng serve",
"ui-build": "ng build --prod --aot --base-href 'https://cmuchimpslab.github.io/android-networktrace-ui/'",
"ui-npx": "npx angular-cli-ghpages --dir=docs",
"ui-lint": "ng lint",
"api-build": "npm run api-build-ts",
"api-build-ts": "tsc -p tsconfig.api.json",
"api-list-tsc": "tsc -p tsconfig.api.json --traceResolution",
"api-clean": "rm -rf ./dist-api",
"api-serve": "node dist-api/server.js",
"api-start-dev": "nodemon dist-api/server.js",
"start": "npm run api-serve",
"api-watch-ts": "tsc -p tsconfig.api.json --watch"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "^0.12.4",
"@angular/animations": "^6.1.10",
"@angular/cdk": "^7.3.7",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.10",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"bootstrap": "4.3.1",
"compression": "^1.7.2",
"core-js": "^2.5.4",
"cors": "2.8.5",
"express": "^4.16.3",
"gsap": "^3.5.1",
"hammerjs": "^2.0.8",
"helmet": "^3.12.1",
"highcharts": "7.1.1",
"highcharts-angular": "2.4.0",
"jquery": "^3.5.1",
"lite-server": "2.4.0",
"lodash": "^4.17.20",
"mongodb": "3.2.3",
"rxjs": "~6.2.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular/cli": "^7.1.4",
"@angular/compiler-cli": "^7.2.16",
"@angular/language-service": "^6.1.0",
"@types/compression": "^0.0.36",
"@types/cors": "2.8.5",
"@types/express": "^4.16.0",
"@types/helmet": "^0.0.38",
"@types/lodash": "4.14.126",
"@types/mongodb": "3.1.26",
"@types/node": "~8.9.4",
"angular-cli-ghpages": "^0.6.2",
"codelyzer": "~4.3.0",
"node-sass": "^7.0.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "^3.1.6"
}
}