-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) Β· 2.07 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
{
"name": "momokji-client",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "next dev",
"build": "next build",
"start:prod": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@svgr/webpack": "^7.0.0",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@types/node": "18.15.8",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"axios": "^1.4.0",
"dayjs": "^1.11.7",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"next": "13.2.4",
"next-fonts": "^1.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-transition-group": "^4.4.5",
"react-youtube": "^10.1.0",
"swiper": "^9.2.4",
"typescript": "5.0.2",
"zustand": "^4.3.9"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@emotion/babel-plugin": "^11.10.6",
"@storybook/addon-actions": "^7.0.6",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/addon-mdx-gfm": "7.0.6",
"@storybook/nextjs": "7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/testing-library": "^0.1.0",
"@types/gtag.js": "^0.0.13",
"@types/jest": "^29.5.1",
"@types/react-transition-group": "^4.4.6",
"babel-loader": "^8.3.0",
"chromatic": "^6.17.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"storybook": "7.0.6",
"ts-jest": "^29.1.0"
},
"lint-staged": {
"**/*.{js, jsx, ts,tsx}": [
"eslint --cache --cache-location .next/cache/eslint/ --fix",
"prettier --write"
]
}
}