-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"name": "facombot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "npx tsc",
"start": "node build/server.js"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.18",
"@types/cors": "^2.8.6",
"@types/discord-rpc": "^3.0.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/js-combinatorics": "^0.5.31",
"@types/mongoose": "^5.7.14",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"sucrase": "^3.13.0",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-combinatorics": "^0.5.5",
"mongoose": "^5.9.11"
}
}