This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
96 lines (96 loc) · 2.5 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
92
93
94
95
96
{
"name": "void",
"version": "1.0.0-preview02",
"neutronVersion": "0.1.0-preview02",
"private": true,
"engines": {
"node": "^16"
},
"os": [
"linux",
"darwin"
],
"scripts": {
"dev": "yarn start:dev",
"build": "yarn run build:next",
"build:next": "next build",
"build:schema": "prisma generate",
"analyze": "ANALYZE=true yarn build:next",
"start:dev": "NODE_ENV=development yarn start",
"start": "tsx server/index.ts",
"prepare": "husky install",
"lint": "next lint --fix",
"prod": "yarn build:next && yarn build:schema && yarn start"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@isaacs/ttlcache": "^1.2.1",
"@mantine/core": "^5.8.0",
"@mantine/dropzone": "^5.8.0",
"@mantine/form": "^5.8.0",
"@mantine/hooks": "^5.8.0",
"@mantine/modals": "^5.8.0",
"@mantine/next": "^5.8.0",
"@mantine/notifications": "^5.8.0",
"@mantine/prism": "^5.8.0",
"@next/font": "^13.0.3",
"@prisma/client": "4.6.1",
"@prisma/generator-helper": "^4.6.1",
"@prisma/internals": "^4.6.1",
"@prisma/migrate": "^4.6.1",
"argon2": "^0.30.2",
"discord-oauth2": "^2.10.1",
"discord.js": "^14.6.0",
"fecha": "^4.2.3",
"iron-session": "^6.3.1",
"multer": "^1.4.5-lts.1",
"next": "^13.0.3",
"picocolors": "^1.0.0",
"pretty-ms": "^8.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-qrcode-logo": "^2.8.0",
"sharp": "^0.31.2",
"swr": "^1.3.0",
"systeminformation": "^5.12.15",
"yup": "^0.32.11"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.3",
"@types/multer": "^1.4.7",
"@types/node": "16.18.3",
"@types/react": "^18.0.25",
"@types/sharp": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"commitizen": "^4.2.5",
"commitizen-emoji": "^1.0.5",
"discord-api-types": "^0.37.18",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"husky": "^8.0.2",
"prisma": "4.6.1",
"tsx": "3.9.0",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && yarn cz --hook || true"
}
},
"packageManager": "[email protected]",
"config": {
"commitizenEmoji": {
"conventionalFormat": true
},
"commitizen": {
"path": "./node_modules/commitizen-emoji"
}
}
}