-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
39
40
41
42
43
{
"name": "react_portfolio_backend",
"version": "1.0.0",
"description": "The backend to my react portfolio",
"main": "server.js",
"scripts": {
"test": "DEBUG='profile*' istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"start": "DEBUG='profile*' node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jamesbillard12/react_portfolio_backend.git"
},
"author": "James Billard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jamesbillard12/react_portfolio_backend/issues"
},
"homepage": "https://github.com/Jamesbillard12/react_portfolio_backend#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"superagent": "^3.8.3"
},
"dependencies": {
"aws-sdk": "^2.256.1",
"bcrypt": "^2.0.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"debug": "^3.1.0",
"del": "^3.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"http-errors": "^1.6.3",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.1.5",
"morgan": "^1.9.0",
"multer": "^1.3.0"
}
}