-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 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
{
"name": "tetu-game-dashboard",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "node server.js",
"build": "ng build --configuration production",
"start:local": "ng serve",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"dev": "yarn prepare:dev && ng serve",
"config:dev": "ts-node ./scripts/setenv.ts --configuration=dev",
"config:prod": "ts-node ./scripts/setenv.ts --configuration=prod",
"prepare:dev": "yarn config:dev && yarn build:gql && yarn build:abi",
"prepare:prod": "yarn config:prod && yarn build:gql && yarn build:abi",
"build:dev": "yarn lint:fix && yarn prepare:dev && ng build --configuration development",
"build:dev:watch": "yarn prepare:dev && ng build --watch --configuration development",
"build:prod": "yarn prepare:prod && ng build --configuration production",
"build:gql": "graphql-codegen --config ./gql/codegen.yml",
"build:abi": "typechain --target ethers-v6 ./abi/**/*.json --out-dir ./generated/abi",
"heroku-postbuild": "yarn build:prod",
"lint": "eslint \"src/app/**/*.ts\" && prettier -c ./src/app",
"lint:fix": "eslint --fix \"src/app/**/*.ts\" && prettier -w ./src/app"
},
"private": true,
"license": "BUSL-1.1",
"lint-staged": {
"src/app/**/*.{ts,css,html}": [
"yarn lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"dependencies": {
"@angular/animations": "14.1.0",
"@angular/common": "14.1.0",
"@angular/compiler": "14.1.0",
"@angular/core": "14.1.0",
"@angular/forms": "14.1.0",
"@angular/platform-browser": "14.1.0",
"@angular/platform-browser-dynamic": "14.1.0",
"@angular/router": "14.1.0",
"@apollo/client": "3.6.9",
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/typescript-apollo-angular": "^3.5.6",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@types/file-saver": "^2.0.7",
"apollo-angular": "3.0.1",
"cors": "^2.8.5",
"echarts": "^5.3.1",
"ethers": "^6.11.1",
"express": "^4.18.2",
"express-favicon": "^2.0.4",
"file-saver": "^2.0.5",
"graphql": "16.5.0",
"helmet": "^7.1.0",
"ng-zorro-antd": "12.1.1",
"ngx-echarts": "^8.0.1",
"ngx-logger": "5.0.11",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"typechain": "^8.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^14.1.0",
"@angular-devkit/build-angular": "14.1.0",
"@angular-eslint/builder": "14.0.4",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/schematics": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "14.1.0",
"@angular/compiler-cli": "14.1.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"@typescript-eslint/parser": "5.29.0",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"engines": {
"node": "20.x",
"yarn": "1.22.x"
}
}