-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 918 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
{
"name": "kanban",
"version": "1.0.0",
"description": "API server for Kanban Lite website",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnaww/kanban.git"
},
"author": "Will Wang",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnaww/kanban/issues"
},
"homepage": "https://github.com/gnaww/kanban#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-session-firebase": "^5.13.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"firebase-admin": "^7.3.0",
"path": "^0.12.7",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"nodemon": "^1.18.11"
}
}