-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "radar-signal-backend",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"postinstall": "tsc",
"dev": "concurrently npm:watch:*",
"watch:node": "nodemon dist/index.js --dev",
"watch:ts": "tsc -w",
"start": "node dist/index.js",
"deploycommands": "node ./deploycommands.js"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node-fetch": "^2.6.2",
"concurrently": "^7.3.0",
"discord-api-types": "^0.37.2",
"nodemon": "^2.0.19",
"typescript": "^4.7.4"
},
"dependencies": {
"@discordjs/builders": "^1.2.0",
"@discordjs/rest": "^1.1.0",
"airtable": "^0.11.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.2",
"node-fetch": "^2.6.7",
"tweetnacl": "^1.0.3"
},
"contributors": [
{
"name": "Timi Tejumola",
"email": "[email protected]",
"url": "https://github.com/timi-codes"
}
]
}