-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.25 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
{
"name": "@gio-design/utils",
"version": "23.0.0",
"description": "Utils for GrowingIO Design",
"repository": "https://github.com/growingio/gio-design-utils.git",
"author": "GrowingIO Frontend Team <eng-frontend@growingio.com>",
"license": "Apache-2.0",
"files": [
"dist",
"lib",
"es"
],
"sideEffects": [
"dist/*",
"*.less"
],
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/utils.umd.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "father-build",
"eslint": "eslint src --ext .ts,.tsx",
"gen-version": "conventional-changelog -p angular",
"get-version": "gio-design version -p ./package.json",
"postversion": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preversion": "git fetch --tags",
"storybook": "start-storybook -p 6006 -s public",
"storybook:build": "build-storybook --quiet -s public",
"stylelint": "stylelint 'src/**/*.less' --custom-syntax postcss-less",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.14.8",
"date-fns": "^2.25.0",
"lodash": "^4.17.21",
"pinyin": "^2.9.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.0.0",
"@gio-design/cli": "^21.2.0",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-storysource": "^6.4.9",
"@storybook/addons": "^6.4.9",
"@storybook/api": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/node-logger": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "^4.1.0",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-storybook": "^0.5.3",
"eslint-plugin-tsdoc": "^0.2.11",
"father-build": "^1.19.6",
"husky": "^7.0.1",
"jest": "27.5.1",
"jsdom": "^19.0.0",
"less": "3.13.1",
"less-loader": "^10.0.0",
"lint-staged": "^12.1.5",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^24.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^27.0.4",
"typescript": "^4.0.2",
"webpack": "^5.46.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}