-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "murakano-be",
"version": "1.0.0",
"description": "개발 용어 발음 검색 서비스 \"머라카노\"의 백엔드 레포지토리 입니다.",
"main": "app.js",
"scripts": {
"start": "node ./node_modules/pm2/bin/pm2 start app.js",
"poststart": "node ./node_modules/pm2/bin/pm2 logs",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prettier": "prettier --write --config ./.prettierrc './src/**'",
"generate:user": "node ./scripts/generate-users-data.js",
"generate:word": "node ./scripts/generate-words-data.js"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Murakano/murakano-be/issues"
},
"homepage": "https://github.com/Murakano/murakano-be#readme",
"dependencies": {
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.4.3",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemon": "^3.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pm2": "^5.3.1",
"redis": "^4.6.15",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"prettier": "^3.3.3"
}
}