-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 945 Bytes
/
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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "Discord bot for Snapshot",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node dist/src/index.js"
},
"dependencies": {
"@snapshot-labs/snapshot.js": "^0.4.42",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"connection-string": "^1.0.1",
"cors": "^2.8.5",
"discord.js": "^14.6.0",
"dotenv": "^10.0.0",
"eslint": "^6.7.2",
"express": "^4.17.1",
"mysql": "^2.18.1",
"nodemon": "^2.0.15",
"remove-markdown": "^0.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^1.19.1"
}
}