forked from austinmccalley/points
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 788 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
{
"name": "bot",
"version": "1.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev ./src/server.ts",
"dev-db": "set NODE_ENV=\"db\" ts-node-dev ./src/server.ts",
"build": "tsc",
"watch": "tsc -w",
"serve": "node ./dist/server.js",
"lint": "eslint src/**/* --fix"
},
"dependencies": {
"axios": "^0.21.1",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.1",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.2"
}
}