-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "siero-bot",
"version": "1.0.0",
"engines": {
"node": "14.2.0"
},
"description": "",
"main": "build/dist/bot.js",
"dependencies": {
"chance": "^1.1.7",
"dayjs": "^1.9.6",
"dayjs-plugin-utc": "^0.1.2",
"dayjs-precise-range": "^1.0.1",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.1",
"dotenv": "^6.2.0",
"make-fetch-happen": "^8.0.10",
"node-emoji": "^1.10.0",
"pg": "^7.18.2",
"pg-promise": "^10.8.0",
"pluralize": "^7.0.0",
"sqlite": "^4.0.17",
"tslib": "^2.0.3",
"typescript": "^3.9.7"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^1.19.4",
"sequelize": "^5.22.3"
},
"scripts": {
"build-ts": "rm -rf build/dist && tsc",
"postinstall": "npm run build-ts",
"start": "concurrently \"npm run watch-ts\" \"npm run watch-node\"",
"serve": "node build/dist/bot.js",
"watch-node": "nodemon build/dist/bot.js",
"watch-ts": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedmund/siero-bot.git"
},
"author": "Justin Edmund",
"license": "ISC",
"bugs": {
"url": "https://github.com/jedmund/siero-bot/issues"
},
"homepage": "https://github.com/jedmund/siero-bot#readme"
}