-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "bootstrap",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged --quiet --no-stash --concurrent true",
"commit-msg": "node ci/commit-msg.mjs $1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"cookie": "^0.6.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.2.0",
"mongoose": "^8.0.0",
"next": "12.2.5",
"next-auth": "^4.24.3",
"openai": "^4.20.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"svgo": "^3.0.5",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/validator": "^13.12.0",
"eslint": "8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "^15.0.2",
"picocolors": "^1.0.0",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.8.2"
}
}