-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 931 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
{
"name": "suggestions",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:devcord/suggestions.git",
"author": "Austin M. <[email protected]>",
"license": "MIT",
"dependencies": {
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"mongoose": "^5.9.16",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/mongoose": "^5.7.21",
"@types/node": "^14.0.6",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src/",
"dev": "ts-node-dev src/index.ts",
"serve": "node ./dist/index.js"
}
}