-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "awoo",
"version": "0.11.0",
"description": "A realtime Werewolf moderator and game manager for Discord.",
"main": "./index.js",
"repository": "https://github.com/ThePhar/awoo.git",
"author": "Zach Parks <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "rimraf build && tsc",
"start": "yarn build && node index.js",
"dev": "nodemon --exec ts-node index.ts --watch ."
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/deep-equal": "^1.0.1",
"@types/moment": "^2.13.0",
"@types/node": "^16.0.1",
"@types/node-schedule": "^1.3.2",
"@types/random-item": "^2.0.0",
"@types/redux": "^3.6.31",
"@types/ws": "^7.4.6",
"nodemon": "^2.0.10",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"array-shuffle": "^2.0.0",
"chalk": "^4.1.1",
"date-fns": "^2.22.1",
"dedent": "^0.7.0",
"deep-equal": "^2.0.5",
"discord.js": "github:discordjs/discord.js",
"dotenv": "^10.0.0",
"immer": "^9.0.5",
"node-schedule": "^2.0.0",
"random-item": "^4.0.1",
"sql-template-strings": "^2.2.2"
}
}