-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 738 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 738 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
{
"name": "secret_hitler",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start:dev": "NODE_ENV=development ts-node-dev --respawn --transfile-only src/index.ts",
"start:build": "NODE_ENV=proudction node build/index.js",
"start": "NODE_ENV=production ts-node src/index.ts",
"build": "tsc",
"dev": "nodemon src/index.ts"
},
"dependencies": {
"@discordjs/builders": "^1.2.0",
"@discordjs/rest": "^0.1.0-canary.0",
"async-mutex": "^0.3.2",
"discord-api-types": "^0.23.1",
"discord.js": "^13.11.0",
"dotenv": "^10.0.0",
"mongoose": "^6.2.2",
"nodemon": "^2.0.14",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"wokcommands": "^1.5.3"
}
}