-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "resume",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006 -s ./public",
"build-storybook": "storybook build -s public",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.3",
"@next/font": "13.1.1",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^7.0.0-beta.20",
"@storybook/addon-essentials": "^7.0.0-beta.20",
"@storybook/addon-interactions": "^7.0.0-beta.20",
"@storybook/addon-links": "^7.0.0-beta.20",
"@storybook/nextjs": "^7.0.0-beta.20",
"@storybook/react": "^7.0.0-beta.20",
"@storybook/testing-library": "^0.0.14-next.1",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/jest": "^29.2.5",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/testing-library__jest-dom": "5.14.5",
"babel-loader": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-storybook": "^0.6.8",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"storybook": "^7.0.0-beta.20",
"ts-node": "^10.9.1",
"util": "^0.12.5"
}
}