forked from worldcoin/world-id-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.276.0",
"@aws-sdk/util-dynamodb": "^3.276.0",
"@discordjs/builders": "^1.4.0",
"@discordjs/rest": "^1.5.0",
"@next/font": "13.1.1",
"@radix-ui/react-scroll-area": "^1.0.2",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@worldcoin/idkit": "^0.5.1",
"classnames": "^2.3.2",
"discord-api-types": "^0.37.27",
"discord-interactions": "^3.2.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"next": "13.1.6",
"next-auth": "^4.18.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use-scroll-direction": "^0.1.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@ottofeller/eslint-config-ofmt": "1.5.2",
"@ottofeller/ofmt": "1.5.2",
"@ottofeller/prettier-config-ofmt": "1.5.2",
"autoprefixer": "^10.4.13",
"cspell": "^6.18.1",
"dotenv": "^16.0.3",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
},
"eslintConfig": {
"extends": "@ottofeller/eslint-config-ofmt/eslint.quality.cjs"
},
"name": "discord-bouncer",
"engines": {
"node": ">=18"
},
"private": true,
"scripts": {
"build": "next build",
"create-table-local": "ts-node -r dotenv/config ./create-table.ts dotenv_config_path=./.env.local dotenv_config_debug=true",
"dev": "next dev",
"format": "prettier --write \"{src,pages}/**/*.{ts,tsx,js}\"",
"format:check": "prettier --check \"{src,pages}/**/*.{ts,tsx,js}\"",
"lint": "olint ./src",
"prebuild": "ts-node ./create-table.ts",
"spellcheck": "cspell ./**/*.{ts,js,tsx,json} -e package-lock.json -e node_modules -e .next",
"start": "next start",
"typecheck": "tsc"
},
"version": "0.1.0"
}