-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
123 lines (123 loc) · 3.97 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
{
"name": "@alauda/ui",
"version": "8.0.0",
"description": "Angular UI components by Alauda Frontend Team.",
"repository": "git+https://github.com/alauda/alauda-ui.git",
"author": "Alauda Frontend",
"contributors": [
"FengTianze",
"JounQin <admin@1stG.me> (https://www.1stG.me)"
],
"license": "MIT",
"packageManager": "yarn@1.22.21",
"keywords": [
"alauda",
"angular",
"components",
"ui"
],
"scripts": {
"build": "node scripts/build.js",
"build:copy": "node scripts/copy-resources",
"build:lib": "ng-packagr -c tsconfig.lib.json",
"build:watch": "node scripts/build.js --watch",
"debug": "node scripts/build.js --debug --watch",
"dev": "yarn start",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:style": "stylelint --cache '{src,stories}/**/*.{html,scss}'",
"lint:tsc": "tsc -p . --noEmit",
"prepare": "patch-package && simple-git-hooks && touch documentation.json && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"start": "yarn storybook",
"storybook": "ng run storybook:storybook",
"storybook:build": "ng run storybook:build-storybook",
"test": "jest --coverage",
"test:ci": "JEST_JUNIT_OUTPUT_DIR=reports jest --runInBand --coverage --reporters=jest-junit",
"test:clear": "jest --clearCache",
"test:update": "jest -u",
"test:watch": "jest --watch"
},
"peerDependencies": {
"@angular/animations": ">=18.0.0",
"@angular/cdk": ">=18.0.0",
"@angular/common": ">=18.0.0",
"@angular/core": ">=18.0.0",
"@angular/forms": ">=18.0.0",
"@angular/platform-browser": ">=18.0.0",
"dayjs": "^1.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@1stg/commitlint-config": "^3.2.0",
"@1stg/lint-staged": "^4.0.0",
"@1stg/remark-preset": "^2.0.0",
"@1stg/simple-git-hooks": "^0.2.3",
"@1stg/stylelint-config": "^6.0.0",
"@angular-devkit/build-angular": "^18.0.7",
"@angular/animations": "^18.0.6",
"@angular/cdk": "^18.0.6",
"@angular/cli": "^18.0.7",
"@angular/common": "^18.0.6",
"@angular/compiler": "^18.0.6",
"@angular/compiler-cli": "^18.0.6",
"@angular/core": "^18.0.6",
"@angular/forms": "^18.0.6",
"@angular/platform-browser": "^18.0.6",
"@angular/platform-browser-dynamic": "^18.0.6",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@compodoc/compodoc": "^1.1.25",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@storybook/addon-essentials": "^8.2.1",
"@storybook/addon-interactions": "^8.2.1",
"@storybook/addon-links": "^8.2.1",
"@storybook/angular": "^8.2.1",
"@storybook/blocks": "^8.2.1",
"@types/chroma-js": "^2.4.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "29.5.12",
"@types/node": "^20.5.7",
"angular-eslint": "18.1.0",
"chroma-js": "^2.4.2",
"dayjs": "^1.11.11",
"eslint": "^9.6.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^54.0.0",
"file-saver": "^2.0.5",
"gulp": "^5.0.0",
"gulp-dart-sass": "^1.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^14.1.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"ng-packagr": "^18.0.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"remark-gfm": "^4.0.0",
"rxjs": "^7.8.1",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.2.1",
"storybook-dark-mode": "^4.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"ts-jest": "29.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
"typescript-eslint": "7.16.1",
"yarn-deduplicate": "^6.0.2",
"zone.js": "^0.14.7"
},
"publishConfig": {
"access": "public",
"directory": "release"
}
}