-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.81 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "soar",
"version": "1.0.0",
"private": true,
"author": "Tre' Grisby <trewaters@hotmail.com>",
"scripts": {
"dev": "next",
"concurrent": "concurrently \"mongod --config C:/data/config/mongod.conf\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"cover": "jest --coverage",
"pretty": "prettier --l .",
"pretty-fix": "prettier --write . && prettier --list-different .",
"postinstall": "prisma generate && prisma db push",
"mongo": "mongod --config C:/data/config/mongod.conf"
},
"dependencies": {
"@auth/core": "^0.37.3",
"@auth/mongodb-adapter": "^3.4.1",
"@auth/prisma-adapter": "^2.4.1",
"@aws-sdk/credential-providers": "^3.693.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mongodb-js/zstd": "^1.2.2",
"@mui/icons-material": "^ 6.1.7",
"@mui/lab": "^6.0.0-beta.15",
"@mui/material": "^6.1.7",
"@next/third-parties": "^14.2.8",
"@prisma/client": "^5.16.1",
"@react-google-maps/api": "^2.19.3",
"axios": "^1.7.2",
"gcp-metadata": "^5.3.0",
"jwt-decode": "^4.0.0",
"kerberos": "^2.2.0",
"luxon": "^3.4.4",
"mongodb": "^6.8.0",
"next": "^14.2.8",
"next-auth": "^5.0.0-beta.19",
"nodemailer": "^6.9.16",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"snappy": "^7.2.2",
"socks": "^2.8.3"
},
"devDependencies": {
"@axe-core/react": "^4.10.0",
"@jest/globals": "^29.7.0",
"@prisma/nextjs-monorepo-workaround-plugin": "^5.17.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/luxon": "^3.4.1",
"@types/node": "^20.12.8",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/nft": "^0.27.3",
"bcrypt": "^5.1.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.36.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.1",
"prisma": "^5.16.1",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}