-
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) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "clean-node-api",
"version": "1.0.0",
"main": "src/main/index.js",
"repository": "https://github.com/tadomaitis/clean-node-api.git",
"scripts": {
"start": "node src/main/index.js",
"test": "jest --colors --noStackTrace --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage"
},
"standard": {
"env": [
"jest"
]
},
"author": "Thiago Adomaitis <t.d.adomaitis@gmail.com>",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "4.1.7",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.0.2",
"standard": "17.1.0",
"supertest": "6.3.3"
},
"dependencies": {
"bcrypt": "5.1.1",
"dotenv": "16.3.1",
"express": "4.18.2",
"fast-glob": "3.3.1",
"jsonwebtoken": "9.0.2",
"mongodb": "6.2.0",
"validator": "13.11.0"
}
}