-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.71 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
{
"name": "claon-admin-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next dev",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress": "cypress open",
"cypress test": "start-server-and-test start http://localhost:3000 cypress",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@lukemorales/query-key-factory": "^1.2.0",
"@mui/material": "^5.11.13",
"@tanstack/react-query": "^4.28.0",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-color": "^3.0.6",
"@types/react-dom": "18.0.11",
"axios": "^1.3.4",
"next": "13.2.4",
"next-auth": "^4.20.1",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-daum-postcode": "^3.1.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.8",
"react-material-ui-carousel": "^3.4.2",
"react-query": "^3.39.3",
"react-responsive-carousel": "^3.2.23",
"recoil": "^0.7.7",
"typescript": "5.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@storybook/addon-essentials": "^7.0.0-rc.4",
"@storybook/addon-interactions": "^7.0.0-rc.4",
"@storybook/addon-links": "^7.0.0-rc.4",
"@storybook/blocks": "^7.0.0-rc.4",
"@storybook/nextjs": "^7.0.0-rc.4",
"@storybook/react": "^7.0.0-rc.4",
"@storybook/testing-library": "^0.0.14-next.1",
"@svgr/webpack": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"cypress": "^12.8.1",
"eslint": "8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.2.1",
"prettier": "^2.8.6",
"start-server-and-test": "^2.0.0",
"storybook": "^7.0.0-rc.4"
},
"msw": {
"workerDirectory": "public"
}
}