-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"version": "4.0.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"start:prod": "node dist/index.js",
"start:dev": "node dist/index.js",
"start": "npm run start:dev",
"build": "rm -rf dist && tsc",
"lint": "tslint --fix -c ./tslint.json 'src/**/*{.ts,.tsx}'",
"lint:nofix": "tslint -c ./tslint.json 'src/**/*{.ts,.tsx}'",
"prestart:prod": "npm run lint:nofix && npm run build",
"prestart:dev": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Olian04/discord-raid-bot.git"
},
"author": "Olian04",
"license": "MIT",
"bugs": {
"url": "https://github.com/Olian04/discord-raid-bot/issues"
},
"homepage": "https://github.com/Olian04/discord-raid-bot#readme",
"dependencies": {
"@olian/dice-roller": "^2.0.0",
"@olian/typescript-helpers": "^2.3.0",
"@types/node": "^15.3.0",
"@types/node-emoji": "^1.8.1",
"better-logging": "4.5.0",
"bufferutil": "^4.0.3",
"discord.js": "12.4.1",
"dotenv": "^9.0.2",
"firebase-admin": "^9.8.0",
"node-emoji": "^1.10.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
}
}