-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
127 lines (127 loc) · 4.31 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ng-form-design",
"version": "2.0.0",
"description": "",
"author": "dasaoyu",
"license": "MIT",
"keywords": [
"vx",
"form",
"design",
"angular",
"form-design"
],
"scripts": {
"ng": "ng",
"start": "npm run color-less && ng serve -o",
"hmr": "npm run color-less && ng serve -c=hmr",
"build": "npm run color-less && node --max_old_space_size=5120 ./node_modules/@angular/cli/bin/ng build --prod",
"analyze": "node --max_old_space_size=5120 ./node_modules/@angular/cli/bin/ng build --prod --stats-json",
"lint": "npm run lint:ts && npm run lint:style",
"lint:ts": "tslint -p tsconfig.app.json -c tslint.json \"src/**/*.ts\" --fix",
"lint:style": "stylelint \"src/**/*.less\" --syntax less --fix",
"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",
"color-less": "node scripts/color-less.js",
"icon": "ng g ng-alain:plugin icon"
},
"dependencies": {
"@angular/animations": "~8.2.11",
"@angular/common": "~8.2.11",
"@angular/compiler": "~8.2.11",
"@angular/core": "~8.2.11",
"@angular/forms": "~8.2.11",
"@angular/http": "7.2.15",
"@angular/platform-browser": "~8.2.11",
"@angular/platform-browser-dynamic": "~8.2.11",
"@angular/router": "~8.2.11",
"rxjs": "~6.4.0",
"rxjs-compat": "^6.1.0",
"tslib": "^1.10.0",
"zone.js": "~0.9.1",
"@antv/data-set": "^0.10.2",
"@antv/g2": "^3.5.11",
"@antv/g2-plugin-slider": "^2.1.1",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"@types/echarts": "^4.1.3",
"echarts": "^4.2.1",
"ajv": "^6.10.2",
"file-saver": "^2.0.2",
"ng-zorro-antd": "^8.5.2",
"ngx-tinymce": "^7.0.0",
"ngx-ueditor": "^2.1.3",
"screenfull": "^5.0.0",
"qrious": "^4.0.2",
"moment": "^2.24.0",
"@knz/theme": "2.1.0",
"@knz/role": "2.1.0",
"@knz/assembly": "2.1.0",
"@knz/chart": "2.1.0",
"@knz/util": "2.1.0",
"@kre-form/core": "1.1.0",
"@kre-form/ant": "1.1.0",
"@kre-form/survey": "1.1.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.14",
"@angular/cli": "~8.3.14",
"@angular/compiler-cli": "~8.2.11",
"@angular/language-service": "~8.2.11",
"@types/node": "~8.9.4",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "^5.0.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.5.3",
"@angularclass/hmr": "^2.1.3",
"@types/jszip": "^3.1.6",
"@types/mockjs": "^1.0.2",
"codecov": "^3.6.1",
"tslint-config-prettier": "^1.18.0",
"gh-pages": "^2.1.1",
"lint-staged": "^8.2.1",
"less-bundle-promise": "^1.0.7",
"mockjs": "^1.1.0",
"prettier": "^1.18.2",
"prettier-stylelint": "^0.4.2",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^19.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-order": "^3.1.1",
"webpack-bundle-analyzer": "^3.6.0",
"antd-theme-generator": "^1.1.7",
"xlsx": "^0.15.1",
"ng-alain": "^8.8.0",
"ng-alain-codelyzer": "^0.0.1"
},
"lint-staged": {
"linters": {
"src/**/*.ts": [
"npm run lint:ts",
"git add"
],
"src/**/*.less": [
"npm run lint:style",
"git add"
]
},
"ignore": [
"src/assets/*"
]
}
}