-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.1 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
{
"name": "aurora-topu",
"version": "0.1.2",
"private": false,
"description": "React component library",
"license": "MIT",
"author": {
"name": "ToPu",
"email": "2831656901@qq.com"
},
"keywords": [
"component",
"UI",
"React",
"antDesign"
],
"homepage": "https://github.com/topulikeweb/AuroraUI",
"repository": {
"type": "git",
"url": "https://github.com/topulikeweb/AuroraUI"
},
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"eslint": "^8.44.0",
"node-sass": "^7.0.3",
"prettier": "^2.8.8",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.5",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"sass-resources-loader": "^2.2.5",
"scss-loader": "^0.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": " npm run build-css && npm run build-ts",
"build-ts": "tsc -p tsconfig.build.json",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-css": "node-sass ./src/styles/index.scss ./build/index.css",
"clean": "rimraf ./build",
"lint": "eslint --ext js,ts,tsx src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.0.27",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-interactions": "7.0.27",
"@storybook/addon-links": "7.0.27",
"@storybook/addon-onboarding": "1.0.7",
"@storybook/blocks": "7.0.27",
"@storybook/preset-create-react-app": "7.0.27",
"@storybook/react": "7.1.0",
"@storybook/react-webpack5": "7.0.27",
"@storybook/testing-library": "0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.38",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-transition-group": "^4.4.6",
"babel-plugin-named-exports-order": "0.0.2",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^27.5.1",
"postcss": "^8.4.24",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"resolve-url-loader": "^5.0.0",
"rimraf": "^5.0.1",
"storybook": "7.0.27",
"typescript": "^4.4.4",
"webpack": "5.88.1"
}
}