-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 995 Bytes
/
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": "pokemon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pm2 start index.js -n Pokemon",
"format": "npx prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^1.0.0",
"axios": "^0.27.2",
"canvas": "^2.9.3",
"colorette": "^2.0.19",
"discord.js": "^14.0.2",
"dotenv": "^16.0.1",
"gif-frames": "^0.4.1",
"gifencoder": "^2.0.1",
"mongodb": "^4.7.0",
"sharp": "^0.30.6",
"skia-canvas": "^0.9.30"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 150,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
}