-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "haxxor-bunny",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:quiet": "next lint --quiet",
"lint:fix": "next lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"deploy:dev": "DOTENV_CONFIG_PATH=./.env.local ts-node -r dotenv/config ./src/scripts/deploy-dev.ts",
"deploy:prod": "DOTENV_CONFIG_PATH=./.env.production.script.local ts-node -r dotenv/config ./src/scripts/deploy-global.ts"
},
"dependencies": {
"@tanstack/react-query": "^4.0.0",
"@trpc/client": "10.45.0",
"@trpc/next": "10.45.0",
"@trpc/react-query": "10.45.0",
"@trpc/server": "10.45.0",
"axios": "^1.2.0",
"classnames": "^2.3.2",
"discord.js": "^14.5.0",
"mongoose": "^6.6.7",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"sharp": "^0.31.1",
"tweetnacl": "^1.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "18.8.2",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"dotenv": "^16.0.3",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
}
}