-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.68 KB
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
{
"name": "daq-ui",
"version": "1.0.0",
"description": "从零搭建daq-ui组件库",
"main": ".eslintrc.js",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@storybook/addon-docs": "^9.1.5",
"@storybook/addon-onboarding": "^9.1.5",
"@storybook/addon-styling-webpack": "^2.0.0",
"@storybook/addon-webpack5-compiler-swc": "^4.0.1",
"@storybook/react-webpack5": "^9.1.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/classnames": "^2.3.4",
"@types/jest": "^30.0.0",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"classnames": "^2.5.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint-config-app": "^1.0.6",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^9.1.5",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jsdom": "^26.1.0",
"mini-css-extract-plugin": "^2.7.6",
"portfinder": "^1.0.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.0",
"react-refresh": "^0.14.0",
"sass": "^1.64.1",
"sass-loader": "^13.3.2",
"storybook": "^9.1.5",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpackbar": "^5.0.2"
},
"scripts": {
"start": "npm run dev",
"test": "jest",
"dev": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myfirebug/cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/myfirebug/cli/issues"
},
"homepage": "https://github.com/myfirebug/cli#readme",
"dependencies": {
"axios": "^1.4.0",
"css-vars-ponyfill": "^2.4.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not dead"
]
}