-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "for-the-win",
"version": "1.0.0",
"description": "Template for an Express backend",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "mocha --colors test/setup.test.js */*.test.js",
"cover": "nodemon --exec nyc --reporter=lcov --reporter=text-summary mocha test/setup.test.js */*.test.js",
"heroku": "node index.js",
"travis": "mocha test/setup.test.js */*.test.js"
},
"author": "Joe Turner <[email protected]>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"btoa": "^1.1.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.2.0",
"knex": "^0.13.0",
"mongoose": "^5.0.6",
"morgan": "^1.8.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"nyc": "^11.2.1"
}
}