-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "discord-plays-pokemon",
"version": "0.1.0",
"description": "Play any gameboy game together with friends by using Discord",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"develop": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1",
"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": {
"@types/node": "^14.14.31",
"canvas": "^2.7.0",
"dayjs": "^1.10.4",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"gifencoder": "^2.0.1",
"node-cron": "^3.0.0",
"png-file-stream": "^1.2.1",
"pngjs": "^6.0.0",
"serverboy": "git+https://github.com/DrSkunk/serverboy.js.git"
},
"devDependencies": {
"@types/gifencoder": "^2.0.0",
"@types/glob": "^7.1.3",
"@types/node-cron": "^2.0.3",
"@types/pngjs": "^6.0.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"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",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/DrSkunk/discord-plays-pokemon.git"
}
}