-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
89 lines (89 loc) · 2.8 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
{
"name": "bgene",
"version": "1.1.0",
"description": "bgene project",
"author": "huangxiaomin",
"engines": {
"node": ">= 8.10.0",
"npm": ">= 3.0.0"
},
"scripts": {
"precommit": "npm run lint-staged",
"ng": "ng",
"start": "ng serve --port=3000",
"hmr": "ng serve -c=hmr",
"build": "ng build --prod --build-optimizer",
"analyze": "ng build --prod --build-optimizer --stats-json",
"lint": "npm run lint:ts && npm run lint:style",
"lint:ts": "tslint -p src/tsconfig.app.json -c tslint.json 'src/**/*.ts'",
"lint:style": "stylelint \"{src}/**/*.less\" --syntax less",
"lint-staged": "lint-staged",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"e2e": "ng e2e",
"test": "ng test --watch",
"test-coverage": "ng test --code-coverage --watch=false"
},
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@antv/data-set": "^0.8.8",
"@delon/abc": "^7.3.2",
"@delon/acl": "^7.3.2",
"@delon/auth": "^7.3.2",
"@delon/cache": "^7.3.2",
"@delon/form": "^7.3.2",
"@delon/mock": "^7.3.2",
"@delon/theme": "^7.3.2",
"@delon/util": "^7.3.2",
"@ngx-translate/core": "^10.0.1",
"@ngx-translate/http-loader": "^3.0.1",
"ajv": "^6.4.0",
"core-js": "^2.5.4",
"d3": "^5.5.0",
"file-saver": "^1.3.8",
"jquery": "^3.3.1",
"jsplumb": "^2.7.13",
"ng-zorro-antd": "^7.3.3",
"ngx-countdown": "^3.0.0",
"ngx-drag-drop": "^1.0.3",
"ngx-tinymce": "^2.0.0",
"ngx-ueditor": "^2.0.0",
"qrious": "^4.0.2",
"react": "^16.4.2",
"rxjs": "^6.0.0",
"screenfull": "^3.3.1",
"simple-line-icons": "^2.4.1",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.8",
"@angular/compiler-cli": "~7.2.0",
"@angularclass/hmr": "^2.1.3",
"husky": "^0.14.3",
"jasmine-core": "~2.99.1",
"protractor": "~5.3.0"
},
"lint-staged": {
"*.{cmd,html,json,md,sh,txt,xml,yml}": [
"editorconfig-tools fix",
"git add"
],
"*.ts": [
"npm run lint:ts",
"prettier --write",
"git add"
],
"src/**/*.less": [
"npm run lint:style",
"prettier --write",
"git add"
]
}
}