-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (54 loc) · 1.33 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
{
"name": "postgres-express-react-node-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "10.14.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"express-validation": "^1.0.2",
"express-validator": "^5.3.0",
"express-winston": "^3.0.1",
"helmet": "^3.15.0",
"http-status": "^1.2.0",
"joi": "^14.0.4",
"jsonwebtoken": "^8.3.0",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.6.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.41.1",
"sequelize-cli": "^5.3.0",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"supertest": "^3.3.0",
"supertest-as-promised": "^4.0.2"
}
}