-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 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
102
{
"name": "admin-template-for-angular",
"version": "0.0.0",
"author": {
"name": "Bendy Zhang"
},
"lisense": "MIT",
"scripts": {
"ng": "ng",
"watch:examples": "watch 'npm run copy:examples' ./src/app/admin/dev/",
"copy:examples": "ncp ./src/app/admin/dev/ ./src/assets/dev/",
"copy:readme": "ncp ./README.md ./src/assets/README.md",
"local": "ng serve --port=9000",
"start": "run-p copy:examples watch:examples copy:readme local",
"build": "run-p copy:* && ng build --configuration production && ts-node ./tools/after-build.ts",
"deploy": "run-p copy:* && ng build --configuration production && ts-node ./tools/after-build.ts",
"test": "ng test",
"pull:i18n": "git subtree pull --prefix=src/assets/i18n https://github.com/bndynet/i18n.git master --squash",
"lint:ts": "ng lint",
"lint:style": "stylelint **/*.scss --fix",
"e2e": "ng e2e",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.11",
"@angular/cdk": "^18.2.12",
"@angular/common": "^18.2.11",
"@angular/compiler": "^18.2.11",
"@angular/core": "^18.2.11",
"@angular/forms": "^18.2.11",
"@angular/material": "^18.2.12",
"@angular/platform-browser": "^18.2.11",
"@angular/platform-browser-dynamic": "^18.2.11",
"@angular/router": "^18.2.11",
"@bndynet/utils": "^2.0.0",
"@ctrl/ngx-codemirror": "^7.0.0",
"@ngx-translate/core": "^16.0.3",
"@ngx-translate/http-loader": "^16.0.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"angular-oauth2-oidc": "^17.0.2",
"codemirror": "^5.65.0",
"driver.js": "^1.3.1",
"js-cookie": "^3.0.5",
"keycloak-angular": "^16.1.0",
"keycloak-js": "^26.0.5",
"lodash-es": "^4.17.21",
"matcher": "^5.0.0",
"moment": "^2.30.1",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"uuid": "^11.0.3",
"zone.js": "~0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.11",
"@angular/cli": "^18.2.11",
"@angular/compiler-cli": "^18.2.11",
"@bndynet/cli": "^1.4.0",
"@chiragrupani/karma-chromium-edge-launcher": "^2.4.1",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/uuid": "^10.0.0",
"codelyzer": "^6.0.2",
"husky": "^9.1.6",
"jasmine-core": "~5.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.10",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.3.3",
"protractor": "~7.0.0",
"shelljs": "^0.8.5",
"stylelint": "^16.10.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"ts-node": "^10.9.2",
"tslint": "~6.1.3",
"typescript": "~5.4.0",
"watch": "^1.0.2"
},
"lint-staged": {
"*.ts": [
"organize-imports-cli",
"prettier --write"
],
"*.scss": [
"stylelint **/*.scss --fix"
]
}
}