-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "thinkful-backend-template",
"version": "1.0.0",
"description": "Template for an Express backend",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"mocha": "mocha --exit --file test/setup.test.js",
"mocha-exit0": "mocha --exit --file test/setup.test.js || true",
"test": "nodemon --exec npm run mocha-exit0",
"cover": "nodemon --exec nyc --reporter=lcov --reporter=text-summary npm run mocha-exit0",
"heroku": "node server.js",
"travis": "npm run mocha"
},
"author": "Joe Turner <[email protected]>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"mongoose": "^5.3.4",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}