-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
101 lines (101 loc) · 3.22 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
{
"name": "farmdashboard-front",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "node server.js",
"local": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"e2e": "ng e2e",
"bsc": "ng build --configuration production && DEPLOYMENT_ENV=bsc heroku local -p 5000",
"stage": "ng build --configuration production && DEPLOYMENT_ENV=stage heroku local -p 5000",
"prod": "ng build --configuration production && DEPLOYMENT_ENV=prod heroku local -p 5000",
"heroku-postbuild": "ng build --configuration production"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.0.1",
"@angular/cdk": "~13.0.1",
"@angular/cli": "~13.0.2",
"@angular/common": "~13.0.1",
"@angular/compiler": "~13.0.1",
"@angular/compiler-cli": "~13.0.1",
"@angular/core": "~13.0.1",
"@angular/forms": "~13.0.1",
"@angular/localize": "^13.0.1",
"@angular/material": "~13.0.1",
"@angular/platform-browser": "~13.0.1",
"@angular/platform-browser-dynamic": "~13.0.1",
"@angular/router": "~13.0.1",
"@apollo/client": "^3.0.0",
"@ethersproject/units": "^5.0.5",
"@juggle/resize-observer": "^3.3.1",
"@ng-bootstrap/ng-bootstrap": "^9.0.2",
"@stomp/stompjs": "^4.0.7",
"@types/sockjs-client": "^1.1.0",
"@types/stompjs": "^2.3.3",
"angular-emojis": "^1.0.0",
"apollo-angular": "^2.6.0",
"axios": "^0.24.0",
"bootstrap": "^4.6.0",
"canvasjs": "^1.8.3",
"cors": "^2.8.5",
"date-fns": "^2.25.0",
"echarts": "5.2.1",
"express": "^4.17.1",
"graphql": "^15.5.1",
"graphql-tag": "^2.12.5",
"jquery": "^3.5.1",
"lightweight-charts": "^3.1.5",
"ng-katex": "^2.0.3",
"ng-sidebar": "^9.4.2",
"ngx-echarts": "7.0.2",
"ngx-logger": "^4.1.9",
"ngx-perfect-scrollbar": "^10.0.1",
"node-sass": "^6.0.1",
"path": "^0.12.7",
"rxjs": "~6.5.5",
"sass-loader": "^10.0.1",
"sockjs-client": "^1.5.0",
"ts-treemap": "^1.1.0",
"tslib": "^2.0.0",
"typescript": "~4.4.2",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.0.2",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"enhanced-resolve": "^5.7.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.8",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lite-server": "^2.6.1",
"protractor": "~7",
"ts-node": "~8.3.0",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"@angular-eslint/builder": "0.8.0-beta.7",
"@angular-eslint/eslint-plugin": "13.0.0-alpha.0",
"@angular-eslint/eslint-plugin-template": "13.0.0-alpha.0",
"@angular-eslint/template-parser": "13.0.0-alpha.0",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.3"
},
"engines": {
"node": "12.20.1",
"npm": "6.14.10"
}
}