-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.36 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
{
"name": "todo-list",
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
},
"version": "0.1.0",
"private": true,
"homepage": "https://sonyhero.github.io/todo-list",
"dependencies": {
"@babel/runtime": "^7.22.10",
"@craco/craco": "^7.1.0",
"@fontsource/roboto": "^5.0.8",
"@hookform/resolvers": "^3.2.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.2",
"axios": "^1.4.0",
"formik": "^2.4.3",
"gh-pages": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"typescript": "~5.1.6",
"uuid": "^9.0.0",
"yup": "^1.2.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d build",
"format": "prettier --write src",
"storybook": "storybook dev -p 9009",
"build-storybook": "storybook build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@formkit/auto-animate": "^0.7.0",
"@storybook/addon-essentials": "7.2.3",
"@storybook/addon-interactions": "7.2.3",
"@storybook/addon-links": "7.2.3",
"@storybook/blocks": "7.2.3",
"@storybook/preset-create-react-app": "7.2.3",
"@storybook/react": "7.2.3",
"@storybook/react-webpack5": "7.2.3",
"@storybook/testing-library": "0.2.0",
"eslint-plugin-storybook": "^0.6.13",
"prettier": "3.0.1",
"sass": "^1.66.0",
"storybook": "7.2.3"
}
}