-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "verify",
"description": "Service to globally verify and link Southampton students to their Discord accounts",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ecss-soton/verify.git"
},
"keywords": [],
"author": "Euan Caskie - Web officer 2022-23",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecss-soton/verify/issues"
},
"homepage": "https://github.com/ecss-soton/verify#readme",
"private": true,
"scripts": {
"predev": "npx prisma generate",
"dev": "next dev",
"prebuild": "npx prisma generate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:migrate": "npx prisma migrate deploy",
"prisma:dbpush": "npx prisma db push"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mantine/core": "^5.0.2",
"@mantine/hooks": "^5.0.2",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^3.15.2",
"moment": "^2.29.4",
"next": "^14.1.4",
"next-auth": "^4.10.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"autoprefixer": "^10.4.7",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"postcss": "^8.4.14",
"prisma": "^3.15.2",
"tailwindcss": "^3.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}