-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 1.07 KB
/
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": "ethiopia-covid-19-response-api",
"version": "1.0.0",
"description": "Serverless CRUD service exposing a REST HTTP interface",
"author": "",
"license": "MIT",
"scripts": {
"test": "mocha",
"dev": "export IS_OFFLINE=true LOCAL_DB_URL=mongodb://localhost:27017 && serverless offline start -s dev",
"debug": "export SLS_DEBUG=* IS_OFFLINE=true LOCAL_DB_URL=mongodb://localhost:27017 && node --inspect-brk=9229 ./node_modules/.bin/serverless offline start -s dev",
"postinstall": "mkdir -p mongo-db",
"lint": "eslint . --fix"
},
"dependencies": {
"lodash": "^4.17.15",
"mongo-querystring": "^4.1.1",
"mongoose": "^5.9.7"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"mocked-env": "^1.3.2",
"proxyquire": "^2.1.3",
"serverless-domain-manager": "^3.3.1",
"sinon": "^9.0.1",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"serverless": "^1.67.0",
"serverless-offline": "^6.1.2"
},
"engines": {
"node": "^12"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}