-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
44
45
46
47
48
49
50
51
52
{
"name": "stomp-bot",
"version": "0.0.1",
"description": "Discord bot for Stomp Server",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc --build",
"start": "npm run build && node build/index.js",
"start:prod": "SET NODE_ENV=prod&& nodemon",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yorublaireau/stomp-bot.git"
},
"keywords": [
"stomp",
"bot",
"discord",
"quote"
],
"author": "Simon Lemoine",
"license": "CC-BY-NC-SA-3.0",
"bugs": {
"url": "https://github.com/yorublaireau/stomp-bot/issues"
},
"homepage": "https://github.com/yorublaireau/stomp-bot#readme",
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"nodemon": "^2.0.9",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"discord.js": "^14.5.0",
"dotenv": "^10.0.0",
"sequelize": "^6.23.2",
"sqlite3": "^5.1.1"
},
"volta": {
"node": "16.13.1",
"npm": "8.2.0"
}
}