-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "antd-onboarding",
"version": "0.1.0",
"author": "yuzhanglong <[email protected]>",
"main": "lib/index.js",
"module": "esm/index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.2.0",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.40.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.1.2"
},
"scripts": {
"build:cjs": "rimraf ./lib && tsc --module commonjs --outDir lib",
"build:esm": "rimraf ./esm && tsc --module ESNext --outDir esm",
"build:assets": "sass assets/index.scss assets/index.css",
"build": "run-p build:*",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"release": "yarn build && npm publish",
"lint": "eslint --ext .ts,.tsx --max-warnings 0 ./src",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"antd": "^4.16.13",
"classnames": "^2.3.1",
"lodash": "^4.17.21"
},
"files": [
"src",
"esm",
"lib",
"assets"
],
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}