-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 768 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 768 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
{
"name": "discord",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node ./build/server.js",
"dev": "ts-node-dev --respawn --transpileOnly ./src/server.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/request": "^2.48.2",
"@types/request-promise": "^4.1.44",
"body-parser": "^1.19.0",
"discord.js": "^11.5.1",
"express": "^4.17.1",
"fs": "0.0.1-security",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
},
"devDependencies": {
"nodemon": "^1.19.1",
"ts-node": "^8.3.0"
}
}