-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "team-registration",
"description": "A service to create and join teams to compete in a hackathon or other competition",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ecss-soton/team-registration.git"
},
"keywords": [],
"author": "Euan Caskie - Web officer 2022-23",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecss-soton/team-registration/issues"
},
"homepage": "https://github.com/ecss-soton/team-registration#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",
"downloadcvs": "ts-node ./prisma/downloadCVs.ts"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mantine/core": "^5.10.5",
"@mantine/form": "^5.10.5",
"@mantine/hooks": "^5.10.5",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.10.2",
"@tabler/icons-react": "^2.47.0",
"add-to-calendar-button": "^2.6.0",
"add-to-calendar-button-react": "^2.6.0",
"axios": "^1.7.4",
"devicons-react": "^1.3.0",
"formidable": "^3.5.1",
"moment": "^2.30.1",
"nanoid": "^5.0.6",
"next": "^14.2.12",
"next-auth": "^4.24.6",
"qr-scanner": "^1.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-qr-code": "^2.0.12",
"swr": "^2.2.5",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/formidable": "^3.4.5",
"@types/node": "^20.11.24",
"@types/react": "^18.2.63",
"@types/validator": "^13.11.9",
"autoprefixer": "^10.4.18",
"eslint": "8.57.0",
"eslint-config-next": "^14.1.2",
"postcss": "^8.4.35",
"prisma": "^5.10.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}