-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "matchbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch",
"bot:dev": "cross-env NODE_ENV=development node dist/index.js",
"bot:production": "cross-env NODE_ENV=production node dist/index.js",
"api:dev": "cross-env NODE_ENV=development node dist/api.js",
"api:production": "cross-env NODE_ENV=production node dist/api.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^10.5.2",
"cors": "^2.8.4",
"discord.js": "^11.3.2",
"discord.js-commando": "^0.10.0",
"dots-wrapper": "^2.1.13-0",
"express": "^4.16.3",
"firebase-admin": "^5.12.1",
"gamedig": "^1.0.46",
"knex": "^0.19.5",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"moment-timezone": "^0.5.21",
"node-schedule": "^1.3.0",
"objection": "^1.1.9",
"request": "^2.86.0",
"sqlite3": "^4.0.6"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/lodash": "^4.14.109",
"cross-env": "^5.1.5",
"husky": "^1.1.1",
"prettier": "1.14.3",
"pretty-quick": "^1.7.0",
"shipit-cli": "^4.1.0",
"shipit-deploy": "^4.1.0",
"typescript": "^3.6.4"
}
}