-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "budgetplanner",
"version": "1.0.0",
"description": "A simple household budget planner",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV=test node tests/tests.js | tap-spec",
"test_logic": "node tests/logic_tests.js | tap-spec",
"dev": "nodemon src/server.js",
"start": "node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-12/BudgetPlanner.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-12/BudgetPlanner/issues"
},
"homepage": "https://github.com/fac-12/BudgetPlanner#readme",
"devDependencies": {
"eslint": "^4.12.0",
"istanbul": "^0.4.5",
"nodemon": "^1.12.1",
"shot": "^4.0.4",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"env2": "^2.2.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"jsonwebtoken": "^8.1.0",
"pg": "^7.4.0",
"validator": "^9.1.2"
}
}