-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 969 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": "coffee-machine",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:lofi-with-discord/coffee-machine.git",
"author": "Park Min Hyeok <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "nodemon -e ts --exec 'yarn build && yarn start || exit 1'"
},
"devDependencies": {
"@types/superagent": "^4.1.13",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.13",
"typescript": "^4.4.3"
},
"dependencies": {
"@lavacord/discord.js": "^0.0.7",
"chalk": "^4.1.2",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"knex": "^0.95.11",
"mysql": "^2.18.1",
"superagent": "^6.1.0"
}
}