-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "research-express-sessions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon index.js",
"test": "nyc tape ./tests/*.js | tap-spec",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"colors": "^1.3.2",
"compression": "^1.7.3",
"connect-session-sequelize": "^5.2.2",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"helmet": "^3.13.0",
"morgan": "^1.9.0",
"pg": "^7.4.3",
"sequelize": "^4.38.0"
},
"devDependencies": {
"codecov": "^3.0.4",
"eslint": "^5.4.0",
"eslint-config-node": "^3.0.0",
"eslint-config-prettier": "^3.0.1",
"nyc": "^12.0.2",
"supertest": "^3.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
}
}