-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "activecollab-discord-bot",
"version": "0.1.0",
"description": "Discord integration for ActiveCollab",
"scripts": {
"test": "jest --forceExit --coverage --verbose",
"watch-test": "jest --forceExit --coverage --verbose --watch",
"start": "npm run build && npm run serve",
"start-nobuild": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"build-ts": "tsc",
"tslint": "tslint -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 \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"update-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Real-Serious-Games/activecollab-discord-bot.git"
},
"keywords": [
"activecollab",
"discord",
"bot",
"integration"
],
"author": "Rory Dungan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Real-Serious-Games/activecollab-discord-bot/issues"
},
"homepage": "https://github.com/Real-Serious-Games/activecollab-discord-bot#readme",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.11.1",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.108",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.35",
"@types/node": "^8.10.10",
"@types/request-promise-native": "^1.0.14",
"@types/supertest": "^2.0.4",
"concurrently": "^3.5.1",
"jest": "^22.4.3",
"mockdate": "^2.0.2",
"nodemon": "^1.17.3",
"supertest": "^3.0.0",
"ts-jest": "^22.4.4",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"dependencies": {
"body-parser": "^1.18.2",
"bufferutil": "^3.0.4",
"confucious": "0.0.12",
"data-forge": "^1.2.3",
"discord.js": "^11.3.2",
"erlpack": "github:hammerandchisel/erlpack",
"express": "^4.16.3",
"fp-ts": "^0.6.8",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"request-promise-native": "^1.0.5",
"structured-log": "^0.2.0"
}
}