This repository has been archived by the owner on Aug 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.36 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
{
"name": "aigis-doc",
"version": "0.0.0-NOT-USED",
"scripts": {
"ng": "ng",
"start": "cross-env NODE_ENV=dev npm run parse && ng serve --port 9099 --no-progress",
"build": "cross-env NODE_ENV=prod npm run parse && ng build --no-progress --prod --base-href /aigis-doc/",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"prettier": "prettier -c --write '**/*'",
"lint-staged": "lint-staged",
"pub": "npm run build & ngh",
"deploy": "ngh",
"parse": "node scripts/md2json",
"codecov": "ng test --code-coverage --no-watch --no-progress --browsers=ChromeHeadlessNoSandbox"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.12",
"@angular/common": "~7.2.12",
"@angular/compiler": "~7.2.12",
"@angular/core": "~7.2.12",
"@angular/forms": "~7.2.12",
"@angular/platform-browser": "~7.2.12",
"@angular/platform-browser-dynamic": "~7.2.12",
"@angular/router": "~7.2.12",
"core-js": "^2.5.4",
"rxjs": "~6.4.0",
"tslib": "^1.9.3",
"zone.js": "~0.9.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^7.4.3",
"@angular-builders/dev-server": "^7.3.1",
"@angular-devkit/build-angular": "^0.13.8",
"@angular/animations": "^7.2.15",
"@angular/cdk": "^7.3.7",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.12",
"@angular/language-service": "~7.2.12",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~8.9.4",
"angular-cli-ghpages": "^0.5.3",
"angular-in-memory-web-api": "^0.8.0",
"codelyzer": "^4.5.0",
"copy-webpack-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"fs-extra": "^7.0.1",
"husky": "^2.2.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.5",
"karma-jasmine": "~1.1.2",
"lint-staged": "^8.1.5",
"ng-zorro-antd": "^7.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"protractor": "~5.4.2",
"puppeteer": "^1.15.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.2.2",
"webpackbar": "^3.1.5"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"linters": {
"*.ts": [
"prettier --write",
"git add"
]
},
"relative": true
}
}