-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 935 Bytes
/
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
{
"name": "twitch-hook",
"version": "1.0.0",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"quickstart": "pnpm i && pnpm run dev",
"build": "next build",
"start": "next start",
"dev": "next dev -p 5555",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"lint": "next lint --fix",
"tsc": "tsc --noEmit",
"format": "prettier --write ./{server,pages,utils,components}/**/*.{js,jsx,json,md,ts,tsx}"
},
"dependencies": {
"colorette": "^2.0.16",
"discord-api-types": "^0.33.1",
"dotenv-extended": "^2.9.0",
"express": "^4.18.1",
"mongodb": "^4.6.0",
"next": "12.1.4",
"petitio": "^1.4.0",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "17.0.23",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"prettier": "^2.6.2",
"typescript": "4.6.3"
}
}