-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.78 KB
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
{
"name": "exeter-course-map",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run lint && npm run check-types && npm run build"
},
"dependencies": {
"@next-auth/mongodb-adapter": "^1.0.4",
"@next-auth/prisma-adapter": "^1.0.1",
"@prisma/client": "^4.3.1",
"@react-three/drei": "^9.40.0",
"@react-three/fiber": "^8.7.4",
"elkjs": "^0.8.2",
"framer-motion": "^7.3.2",
"mongodb": "^4.10.0",
"mongoose": "^6.7.1",
"next": "^12.2.5",
"next-auth": "^4.10.3",
"next-themes": "^0.2.1",
"nodemailer": "^6.7.2",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-flow-renderer": "^10.3.16",
"react-gtm-module": "^2.0.11",
"react-icons": "^4.6.0",
"tailwind-gradient-mask-image": "^1.0.0",
"three": "^0.144.0",
"typewriter-effect": "^2.19.0",
"web-worker": "^1.2.0"
},
"devDependencies": {
"@types/googletag": "^2.2.4",
"@types/gtag.js": "^0.0.12",
"@types/node": "18.7.16",
"@types/react": "18.0.20",
"@types/react-gtm-module": "^2.0.1",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.23.1",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.3.0",
"next-transpile-modules": "^9.0.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.3.1",
"tailwindcss": "^3.1.8",
"typescript": "4.8.3"
}
}