-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "one-night-ultimate-discord",
"version": "0.2.7",
"description": "Play One Night Ultimate Werewolf together with friends on Discord",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/src/index.js",
"develop": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run start\"",
"test": "mocha --exit",
"test:watch": "mocha -w",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"prettier-format": "prettier --config .prettierrc '**/*.{js,ts,tsx,json,md,html}' --write",
"build": "tsc"
},
"author": "Sebastiaan Jansen",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.5.0",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"ffmpeg-static": "^4.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/glob": "^7.1.3",
"@types/mocha": "8.2.2",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"chai": "^4.3.4",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/DrSkunk/one-night-ultimate-discord.git"
}
}