forked from hizaidii/KanDo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 908 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": "kando",
"version": "1.0.0",
"description": "A kanban board app that let's you create multiple boards, swimlanes, and tickets",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Husain Zaidi",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.1",
"echarts": "^5.4.3",
"express": "^4.18.2",
"express-session": "^1.18.0",
"express-sessions": "^1.0.6",
"googleapis": "^137.1.0",
"hbs": "^4.2.0",
"moment": "^2.30.1",
"mongodb": "^6.3.0",
"mongoose": "^8.1.1",
"passport": "^0.7.0",
"passport-apple": "^2.0.2",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0"
}
}