-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
44
45
46
{
"name": "stock-tracker",
"version": "1.0.0",
"description": "Simple portfolio tracking app",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha --timeout 3000 --exit --recursive",
"test:utils": "mocha test/utils --watch --reporter min",
"test:controllers": "mocha test/controllers --watch",
"test:models": "mocha test/models --timeout 3000 --watch --reporter min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belcurv/stock_tracker.git"
},
"keywords": [
"Node",
"Express",
"MongoDB",
"Vanilla"
],
"author": "JRS",
"license": "MIT",
"bugs": {
"url": "https://github.com/belcurv/stock_tracker/issues"
},
"homepage": "https://github.com/belcurv/stock_tracker#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"mocha": "^5.0.1",
"mockery": "^2.1.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.1",
"mongodb": "^3.0.2",
"morgan": "^1.9.0"
}
}