-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 972 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 972 Bytes
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
{
"name": "couchdb-express-node",
"version": "1.0.0",
"description": "Crud operation using CouchDB-Express-Node",
"main": "server.js",
"scripts": {
"test": "server.js",
"dev": "nodemon --exec node -r dotenv/config server.js",
"start": "node -r dotenv/config server.js",
"debug": "node --debug server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"bootstrap": "^4.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dotenv": "^5.0.1",
"ejs": "^2.5.9",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-validator": "^5.1.2",
"font-awesome": "^4.7.0",
"helmet": "^3.12.0",
"jquery": "^3.3.1",
"method-override": "^2.3.10",
"morgan": "^1.9.0",
"nano": "^6.4.4",
"popper.js": "^1.14.3",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"nodemon": "^1.17.3"
}
}