-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "pinterest-be",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "pm2 start ecosystem.config.js --env production",
"dev": "pm2 start ecosystem.config.js --env development",
"dev:npx": "npx nodemon ./src/index.js",
"test": "pm2 start ecosystem.config.js --env test",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"aws-sdk": "^2.1195.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.21.4"
},
"devDependencies": {
"cross-env": "^7.0.3",
"faker": "^5.5.3",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"node-mocks-http": "^1.11.0",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1",
"superagent": "^8.0.0",
"supertest": "^6.2.4"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}