-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.68 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
{
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"start:dev": "cross-env NODE_ENV=development MSW=on Local=on webpack serve --config config/webpack.dev.js",
"start:prod": "yarn build:prod && serve -s dist",
"build:prod": "cross-env NODE_ENV=production webpack --progress --config config/webpack.prod.js",
"build:dev": "cross-env NODE_ENV=development webpack --progress --config config/webpack.dev.js",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@emotion/babel-plugin": "^11.11.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.24",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.0.24",
"@storybook/global": "^5.0.0",
"@storybook/preset-create-react-app": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-webpack5": "^7.0.24",
"@storybook/test": "^7.6.8",
"@tanstack/eslint-plugin-query": "^5.0.5",
"@total-typescript/ts-reset": "^0.5.1",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/node": "^20.4.2",
"@types/prettier": "^2",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vue/preload-webpack-plugin": "^2.0.0",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": ">=7",
"lint-staged": "^15.2.0",
"msw": "^1.2.3",
"msw-storybook-addon": "^1.8.0",
"postcss": "^8.4.31",
"postcss-styled-syntax": "^0.5.0",
"prettier": "2.8.8",
"react-refresh": "^0.14.0",
"serve": "^14.2.0",
"storybook": "^7.0.24",
"storybook-addon-react-router-v6": "^2.0.2",
"style-loader": "^3.3.3",
"stylelint": "^15.10.1",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-standard": "^34.0.0",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@atlaskit/tree": "^8.8.9",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@radix-ui/react-radio-group": "^1.1.3",
"@tanstack/react-query": "^5.4.3",
"axios": "^1.4.0",
"emotion-normalize": "^11.0.1",
"framer-motion": "7.6.2",
"polished": "^4.2.2",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.1",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"packageManager": "[email protected]"
}