forked from rasouza/node-clean-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 KB
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
40
41
42
43
44
45
46
{
"name": "backend",
"version": "1.0.0",
"description": "user management api for healthcare system",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon",
"start": "node index.js",
"test": "NODE_ENV=test nyc --reporter=html --report-dir=coverage mocha --require test/hooks.js --recursive --parallel --exit",
"test:watch": "NODE_ENV=test nyc --reporter=html --report-dir=coverage mocha --require test/hooks.js --recursive --parallel --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rasouza/sami-test.git"
},
"author": "R. A. Souza",
"license": "ISC",
"bugs": {
"url": "https://github.com/rasouza/sami-test/issues"
},
"homepage": "https://github.com/rasouza/sami-test#readme",
"dependencies": {
"awilix": "^4.2.6",
"dotenv": "^8.2.0",
"fastify": "^3.9.2",
"fastify-static": "^3.3.1",
"lodash-fp": "^0.10.4",
"make-promises-safe": "^5.1.0",
"mongoose": "^5.9.18",
"pino": "^6.9.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"pino-pretty": "^4.3.0"
}
}