-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.04 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
47
48
{
"name": "dumdee-api",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "nodemon -r dotenv/config src/server.js",
"debug": "nodemon --inspect=0.0.0.0 src/server.js",
"test:unit": "jest --passWithNoTests",
"test:integration": "jest -c jest.config.integration.js -i",
"test": "npm run test:unit && npm run test:integration",
"seed": "node -r dotenv/config seed.js",
"test:routes:unit": "jest --passWithNoTests ./src/routes",
"test:routes:integration": "jest -c jest.config.integration.js -i ./src/routes ./src/database ./src/express",
"test:routes": "npm run test:routes:unit && npm run test:routes:integration",
"test:services:unit": "jest --passWithNoTests ./src/services",
"test:services:integration": "jest -c jest.config.integration.js -i ./src/services ./src/database",
"test:services": "npm run test:services:unit && npm run test:services:integration",
"test:repos:unit": "jest --passWithNoTests ./src/repository",
"test:repos:integration": "jest -c jest.config.integration.js -i ./src/repository ./src/database",
"test:repos": "npm run test:repos:unit && npm run test:repos:integration",
"test:model:unit": "jest --passWithNoTests ./src/model",
"test:model:integration": "jest -c jest.config.integration.js -i ./src/model ./src/database",
"test:model": "npm run test:model:unit && npm run test:model:integration",
"test:mw:unit": "jest --passWithNoTests ./src/middlewares",
"test:mw:integration": "jest -c jest.config.integration.js -i ./src/middlewares",
"test:mw": "npm run test:mw:unit && npm run test:mw:integration"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"pino": "^6.5.1"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}