-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "gorosey-lol",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"build": "tsc -p tsconfig-build.json",
"dev": "node --env-file=.env.local --watch -r ts-node/register src/server.ts",
"test": "jest",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "eslint src/**/*.ts"
},
"keywords": [],
"author": "Jooyeob Na <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/node-cron": "^3.0.11",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.3.2",
"node-cron": "^3.0.3",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0"
}
}