-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "automuteus-web",
"version": "1.0.0",
"description": "The web interface for the AutoMuteUs Discord bot.",
"keywords": [],
"license": "MIT",
"author": {
"name": "Neil Sparks",
"email": "me@neilsparks.io",
"url": "https://neilsparks.io/"
},
"contributors": [
{
"name": "Aiden Haines",
"url": "https://aidenhaines.com/"
}
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prisma:generate": "yarn prisma generate",
"prisma:migrate": "yarn prisma migrate dev"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@next-auth/prisma-adapter": "1.0.1",
"@popperjs/core": "^2.10.2",
"@prisma/client": "3.9.2",
"babel-plugin-superjson-next": "^0.4.2",
"bootstrap": "5.1.3",
"framer-motion": "^4.0.0",
"log-symbols": "^5.1.0",
"next": "12.1.0",
"next-auth": "4.2.1",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"react": "17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "17.0.2",
"react-markdown": "8.0.0",
"reflect-metadata": "^0.1.13",
"sass": "^1.49.8",
"superjson": "^1.8.1"
},
"devDependencies": {
"@types/next-auth": "3.13.0",
"@types/node": "16.11.25",
"@types/react": "17.0.39",
"prisma": "3.9.2",
"ts-node": "10.5.0",
"typescript": "4.5.5"
}
}