-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.59 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.59 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
{
"name": "webpack-template-react-ts",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "webpack serve",
"build": "webpack --mode production",
"bundle-stats": "webpack --mode production --profile --json > stats.json",
"bundle-analysis": "pnpm bundle-stats && pnpm dlx webpack-bundle-analyzer stats.json",
"lint": "eslint . --max-warnings=0 --ext js,cjs,mjs,ts,tsx",
"typecheck": "tsc --project ./src/tsconfig.json",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepare": "husky install",
"test:unit": "jest test/unit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@jest/globals": "^29.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react-refresh": "^0.14.0",
"storybook": "^7.6.17",
"style-loader": "^3.3.4",
"type-fest": "^4.11.1",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"@ant-design/icons": "^5.3.6",
"antd": "^5.16.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.22.3",
"react-use": "^17.5.0",
"styled-components": "^6.1.8"
}
}