-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.48 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
{
"name": "angular-project",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve -o",
"server": "json-server db.json --host 127.0.0.1 --watch",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"pretty": "pretty-quick && ng lint && ng test",
"socket": "node socket-server/index"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && ng lint"
}
},
"private": true,
"dependencies": {
"@angular/animations": "~10.0.11",
"@angular/cdk": "^10.2.7",
"@angular/common": "~10.0.11",
"@angular/compiler": "~10.0.11",
"@angular/core": "~10.0.11",
"@angular/forms": "~10.0.11",
"@angular/localize": "~10.0.11",
"@angular/material": "^10.2.7",
"@angular/platform-browser": "~10.0.11",
"@angular/platform-browser-dynamic": "~10.0.11",
"@angular/router": "~10.0.11",
"@progress/kendo-angular-charts": "^5.1.0",
"@progress/kendo-angular-common": "^2.0.0",
"@progress/kendo-angular-dateinputs": "^5.1.0",
"@progress/kendo-angular-intl": "^3.0.0",
"@progress/kendo-angular-l10n": "^3.0.0",
"@progress/kendo-angular-popup": "^4.0.0",
"@progress/kendo-drawing": "^1.1.2",
"@progress/kendo-licensing": "^1.0.2",
"@progress/kendo-theme-default": "latest",
"chart.js": "^2.9.4",
"express": "^4.17.1",
"fast-average-color": "^6.3.0",
"font-awesome": "^4.7.0",
"hammerjs": "^2.0.0",
"jest-junit": "^11.1.0",
"line-awesome": "^1.3.0",
"ng2-search-filter": "^0.5.1",
"ngx-pagination": "^5.0.0",
"rxjs": "~6.5.4",
"socket.io-client": "^3.1.2",
"tslib": "^2.1.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/jest": "^10.0.0",
"@angular-devkit/build-angular": "^0.1000.8",
"@angular/cli": "~10.0.7",
"@angular/compiler-cli": "~10.0.11",
"@angular/language-service": "~10.0.11",
"@ngneat/spectator": "^5.13.0",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^26.0.20",
"@types/node": "^12.20.4",
"codelyzer": "^6.0.0",
"husky": "^4.3.8",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.6.3",
"json-server": "^0.16.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.0.0",
"protractor": "~7.0.0",
"socket.io": "^3.1.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.9"
}
}