-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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 index.js",
"mocha": "mocha --exit --file test/setup.test.js '!(node_modules)/**/*test.js'",
"mocha-exit0": "mocha --exit --file test/setup.test.js '!(node_modules)/**/*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 index.js",
"travis": "npm run mocha"
},
"author": "Joe Turner <[email protected]>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"knex": "^0.14.4",
"mongoose": "^5.0.6",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^5.0.4",
"nyc": "^11.6.0"
}
}