-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1018 Bytes
/
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",
"test": "cross-env NODE_ENV=test mocha --file test/index.test.js --timeout 20000",
"cover": "nodemon --exec nyc --reporter=lcov --reporter=text-summary npm run mocha-exit0",
"heroku": "node index.js",
"travis": "npm run mocha"
},
"author": "Joe Turner <jturner@thinkful.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.3.0",
"knex": "^0.14.6",
"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",
"cross-env": "^5.2.0",
"mocha": "^5.0.4",
"nyc": "^11.6.0"
}
}