-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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": "express-pgsql",
"version": "1.0.0",
"description": "An Express server connected to a PostgreSQL database",
"author": "HDdev8",
"license": "MIT",
"main": "index.js",
"keywords": [
"nodejs",
"express",
"postgresql",
"sequelize"
],
"scripts": {
"dev": "NODE_ENV=development nodemon index.js",
"test": "jest --config ./jest.config.json",
"migration:down": "node ./utils/rollback.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-rate-limit": "^7.0.0",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"sequelize": "^6.33.0",
"serve-favicon": "^2.5.0",
"umzug": "^3.3.1",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
}
}