-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 989 Bytes
/
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
{
"name": "denk",
"version": "1.0.0",
"description": "Tarot reading app",
"main": "src/index.js",
"dependencies": {
"body-parser": "^1.19.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"morgan": "^1.9.1",
"pg": "^7.12.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^6.2.1",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"db_init": "node src/model/database/db_init.js",
"test": "NODE_ENV=test tape tests/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-17/DENK.git"
},
"author": "Georgia, Christine, Victor, Jan",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-17/DENK/issues"
},
"homepage": "https://github.com/fac-17/DENK#readme"
}