forked from hamzahamidi/ajsf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.9 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
{
"name": "demo",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.3.0"
},
"scripts": {
"build:all": "yarn build:core && yarn build:aui",
"build:aui": "ng build @ajsf/aui",
"build:core": "ng build @ajsf/core",
"e2e": "ng e2e",
"lint": "ng lint",
"postbuild:core": "cp README.md LICENSE dist/@ajsf/core/",
"postinstall": "yarn-deduplicate || exit 0",
"prepare": "simple-git-hooks && yarn-deduplicate || exit 0",
"prestats": "ng build demo --prod --stats-json",
"start": "ng serve --port 4201",
"start:prod": "ng serve --prod",
"stats": "webpack-bundle-analyzer dist/demo/stats.json",
"test:core": "ng test @ajsf/core",
"test:coverage": "./node_modules/.bin/codecov"
},
"dependencies": {
"@alauda/ui": "^6.4.5",
"@angular/animations": "^14.2.0",
"@angular/cdk": "^14.1.1",
"@angular/common": "^14.2.0",
"@angular/compiler": "^14.2.0",
"@angular/core": "^14.2.0",
"@angular/forms": "^14.2.0",
"@angular/platform-browser": "^14.2.0",
"@angular/platform-browser-dynamic": "^14.2.0",
"@angular/router": "^14.2.0",
"brace": "^0.11.1",
"clipboard-polyfill": "^3.0.1",
"core-js": "^3.6.5",
"json-keys-sort": "^2.0.0",
"lodash-es": "^4.17.21",
"rxjs": "^7.0.0",
"zone.js": "^0.11.7"
},
"devDependencies": {
"@1stg/app-config": "^6.1.5",
"@alauda/common-snippet": "2.3.25",
"@alauda/custom-webpack": "^0.8.3",
"@angular-devkit/build-angular": "^14.2.1",
"@angular/cli": "^14.2.1",
"@angular/compiler-cli": "^14.2.0",
"@angular/flex-layout": "^14.0.0-beta.40",
"@angular/language-service": "^14.2.0",
"@types/jasmine": "~4.0.0",
"@types/jasminewd2": "~2.0.6",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/node": "^12.11.1",
"browserslist": "^4.13.0",
"codecov": "^3.8.3",
"codelyzer": "^6.0.0",
"dayjs": "^1.8.31",
"jasmine-core": "~4.3.0",
"jasmine-spec-reporter": "~5.0.2",
"js-yaml": "^3.14.0",
"jwt-decode": "^2.2.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-monaco-editor": "^2.3.0",
"ng-packagr": "^14.1.0",
"protractor": "~7.0.0",
"ts-essentials": "^7.0.0",
"ts-node": "~8.6.2",
"tsickle": "^0.46.3",
"tslib": "^2.3.1",
"typescript": "~4.7.4",
"webpack-bundle-analyzer": "^4.6.1",
"yarn-deduplicate": "^2.1.1"
},
"resolutions": {
"prettier": "^2.7.1"
},
"browserslist": [
"extends @1stg/browserslist-config/alauda-legacy"
],
"commitlint": {
"extends": [
"@1stg"
]
},
"prettier": "@1stg/prettier-config/semi/angular",
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -Ve"
}
}