-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.73 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
{
"name": "zenbot",
"version": "1.0.0",
"description": "Timer for games played",
"main": "server.js",
"scripts": {
"start": "npm run build && npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "ts-mocha -p tsconfig.json test/**/*.spec.ts --exit",
"unit-test": "ts-mocha -p tsconfig.json test/unit/**/*.spec.ts --exit",
"integ-test": "ts-mocha -p tsconfig.json test/integration/**/*.spec.ts --exit",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint --fix -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"author": "Shahaed Hasan, Paul Ruales",
"license": "MIT",
"dependencies": {
"@google-cloud/firestore": "^2.2.4",
"discord.js": "^11.5.1",
"discord.js-commando": "^0.10.0",
"dotenv": "^8.0.0",
"ffmpeg-static": "^2.5.0",
"node-opus": "^0.3.2",
"ytdl-core": "^0.29.3"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/dotenv": "^6.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.2",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"prettier": "1.18.2",
"ts-mocha": "^6.0.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}