-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 KB
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
43
44
45
46
47
48
49
50
51
{
"name": "midterm-project",
"version": "1.0.0",
"description": "401 JS Midterm/iOS Final Project",
"main": "server.js",
"directories": {
"test": "test"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"http-errors": "^1.6.1",
"mongo": "^0.1.0",
"jsonwebtoken": "^7.4.0",
"mongoose": "^4.9.9",
"morgan": "^1.8.1",
"nodemon": "^1.11.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"mocha-lcov-reporter": "^1.3.0",
"superagent": "^3.5.2"
},
"scripts": {
"lint": "eslint ./",
"test": "mocha",
"debug": "DEBUG=devolunteer* npm run test",
"start": "nodemon server.js",
"cover": "npm run lint && istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/401JS-iOS/JSbackend.git"
},
"author": "James Thomas, Kaylee Alvarado, Carlo Santos, Christopher Closser, Robert Hatfield, Jay Balderas",
"license": "MIT",
"bugs": {
"url": "https://github.com/401JS-iOS/JSbackend/issues"
},
"homepage": "https://github.com/401JS-iOS/JSbackend#readme"
}