-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 887 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 887 Bytes
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
{
"name": "swooshpaybackend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --env-file=.env dist/index.js",
"build": "rimraf dist && tsc",
"dev": "tsc-watch --noClear --onSuccess \"node --env-file=.env dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.0",
"discord-oauth2": "^2.12.1",
"discord.js": "^14.18.0",
"fastify": "^5.2.1",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.5",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.5",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"tsc-watch": "^6.2.1",
"typescript-eslint": "^8.25.0"
}
}