forked from yuzuki-aritomo/train_front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint-staged": "lint-staged",
"prepare": "husky install",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@holiday-jp/holiday_jp": "^2.3.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.2",
"@types/styled-components": "^5.1.25",
"@types/swiper": "^6.0.0",
"axios": "^0.26.1",
"destyle.css": "^3.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"next": "12.1.4",
"next-pwa": "^5.5.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"recoil": "^0.7.4",
"styled-components": "^5.3.5",
"swiper": "^8.1.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"yarn lint . --fix",
"yarn prettier ."
]
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"typescript": "4.6.3"
}
}