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
|
{
"name": "http-cookie-server-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "yarn node index.js",
"dev": "yarn nodemon -i db.json index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"js-sha512": "^0.8.0",
"lowdb": "^1.0.0",
"morgan": "^1.9.1",
"shortid": "^2.2.15"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}
|