-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (45 loc) · 1.26 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
{
"name": "communitybe",
"version": "0.0.1",
"description": "KCN Community Express Server",
"main": "app.js",
"scripts": {
"start": "pm2 start ./config/pm2.config.js --only back-product",
"stop": "pm2 stop all",
"monitor": "pm2 monit",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --config ./config/eslint.config.js",
"lint:fix": "eslint . --fix",
"format": "prettier --write ./config/prettier.config.js .",
"dev": "NODE_ENV=develop node app.js"
},
"author": "hyuk.kim",
"license": "ISC",
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@eslint/eslintrc": "^3.1.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-config-airbnb": "^19.0.4",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.4.0",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"pm2": "^5.4.3",
"prettier": "^3.3.3",
"uuid": "^11.0.3"
}
}