-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.41 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
{
"name": "chinet-explorer",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start server": "node server.js",
"build": "ng build",
"build_prod": "ng build --configuration production",
"test": "ng test -sm false",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.8",
"@angular/cdk": "^13.3.7",
"@angular/common": "^13.3.8",
"@angular/compiler": "^13.3.8",
"@angular/core": "^13.3.8",
"@angular/forms": "^13.3.8",
"@angular/material": "^13.3.7",
"@angular/platform-browser": "^13.3.8",
"@angular/platform-browser-dynamic": "^13.3.8",
"@angular/platform-server": "^13.3.8",
"@angular/router": "^13.3.8",
"@ngxs/devtools-plugin": "^3.7.3",
"@ngxs/logger-plugin": "^3.7.3",
"@ngxs/store": "^3.7.3",
"angular-highcharts": "^13.0.1",
"axios": "^0.27.2",
"better-sqlite3": "^7.5.3",
"bignumber.js": "^9.0.2",
"body-parser": "^1.18.3",
"express": "^4.18.1",
"highcharts": "^10.1.0",
"moment": "^2.29.3",
"ngx-cookie-service": "^13.2.1",
"ngx-json-viewer": "^3.0.2",
"ngx-socket-io": "^4.2.0",
"node-static": "^0.7.11",
"pg": "^8.7.3",
"rxjs": "^7.5.5",
"socket.io": "^4.5.1",
"ws": "^8.6.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.5",
"@angular/cli": "^13.3.5",
"@angular/compiler-cli": "^13.3.8",
"@angular/language-service": "^13.3.11",
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.38",
"husky": "^7.0.1",
"jasmine-core": "^4.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.20",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^5.0.1",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^12.4.1",
"node-sass": "^7.0.1",
"prettier": "2.6.2",
"protractor": "~7.0.0",
"ts-node": "^10.7.0",
"tslint": "~6.1.0",
"typescript": "^4.6.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}