-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "jd-ebs",
"description": "",
"version": "2.2.0",
"author": {
"name": "Tandashi"
},
"repository": {
"url": "https://github.com/Tandashi/JDR-EBS"
},
"license": "MIT",
"scripts": {
"start": "npm run build && npm run migrate:up && node -r dotenv/config dist/ebs.js",
"start-importer": "npm run build && node -r dotenv/config dist/song-importer.js",
"build": "npm run build-ts && npm run tslint",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"migrate:up": "node -r dotenv/config dist/migrations/cli.js up",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"_moduleAliases": {
"@socket-io": "dist/socket-io",
"@twitch-bot": "dist/twitch-bot",
"@web": "dist/web",
"@common": "dist/common",
"@mongo": "dist/mongo",
"@services": "dist/common/services",
"@migrations": "dist/migrations"
},
"dependencies": {
"@types/tmi.js": "^1.7.2",
"argparse": "^2.0.1",
"chalk": "^4.1.1",
"cli-progress": "^3.9.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^2.1.1",
"module-alias": "^2.2.2",
"mongo-migrate-ts": "^1.0.13",
"mongoose": "^5.13.3",
"socket.io": "^4.2.0",
"tmi.js": "^1.8.3",
"ts-node": "^10.1.0",
"twitch": "^4.6.5",
"twitch-auth": "^4.6.5",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/cli-progress": "^3.9.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/lodash": "^4.14.177",
"@types/luxon": "^2.0.7",
"@types/node": "^16.4.1",
"tslint": "^6.1.3"
}
}