-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Upgle",
"version": "1.0.0",
"description": "Talent Sharing Platform Upgle",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.js --exec babel-node",
"build": "babel src -d dist",
"start": "cross-env NODE_ENV=production pm2 start ./dist/index.js",
"db:generate": "npx prisma generate",
"dev-db:push": "dotenv -e .env.dev -- npx prisma db push",
"prod-db:push": "dotenv -e .env.prod -- npx prisma db push",
"lint": "eslint src/**/*.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jandy-SeoulTech/Jandy_Web_Back.git"
},
"author": "",
"license": "GPL-v3",
"bugs": {
"url": "https://github.com/Jandy-SeoulTech/Jandy_Web_Back/issues"
},
"homepage": "https://github.com/Jandy-SeoulTech/Jandy_Web_Back#readme",
"dependencies": {
"@babel/runtime": "^7.14.8",
"@prisma/client": "^2.28.0",
"aws-sdk": "^2.999.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-schedule": "^2.0.0",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-custom": "^1.1.1",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"pm2": "^5.1.0",
"socket.io": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.3",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"prisma": "^2.28.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}