-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
{
"name": "writing-room-article-api",
"version": "0.0.0",
"private": true,
"main": "server.js",
"author": {
"email": "engrsamsonokeji@gmail.com",
"name": "Samson Okeji"
},
"keywords": [
"expressjs",
"api",
"postgres",
"sequelize",
"rest",
"inspirations from youtube (www.youtube.com)"
],
"scripts": {
"start": "NODE_ENV=production server.js",
"dev": "NODE_ENV=development server.js",
"start-test": "cross-env NODE_ENV=test nodemon server.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.6.0",
"express": "~4.16.1",
"express-rate-limit": "^6.2.1",
"http-errors": "~1.6.3",
"http-status": "^1.5.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "~1.9.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"pg": "^8.10.0",
"pg-error": "^1.1.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.29.2",
"winston": "^3.4.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.5.1",
"nodemon": "^2.0.21",
"prettier": "^2.5.1",
"sequelize-cli": "^6.6.0"
}
}