This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "hsoc-homepage",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/hsoc-wargame/hsoc-homepage.git",
"author": "choi138 <[email protected]>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json}\" --fix --cache",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"migrate": "npx prisma migrate dev",
"studio": "npx prisma studio"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto": "^4.5.8",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.10.1",
"axios": "^1.3.3",
"bcrypt": "^5.1.0",
"bootstrap": "^5.2.3",
"framer-motion": "^9.0.7",
"next": "12.0.10",
"next-auth": "^4.19.2",
"next-auth-client": "^1.5.0",
"next-seo": "^5.1.0",
"react": "18.0.0",
"react-bootstrap": "^2.7.1",
"react-dom": "18.0.0",
"react-hook-form": "^7.43.1",
"react-icons": "^4.7.1",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.1",
"styled-components": "^5.3.3",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@types/bcrypt": "^5.0.0",
"@types/node": "17.0.18",
"@types/react": "17.0.39",
"@types/styled-components": "^5.1.22",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^8.36.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"typescript": "4.5.5"
},
"include": [
"next-env.d.ts",
"global.d.ts",
"**/*.ts",
"**/*.tsx"
]
}