-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "clean-node-api",
"version": "1.1.1",
"description": "",
"main": "index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc",
"dev": "ts-node-dev src/main/server.ts",
"up": "npm run build && docker-compose up -d",
"down": "docker-compose down",
"test": "jest --no-cache --passWithNoTests --silent --noStackTrace --coverage=false --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"author": "Bruno Sampaio",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@shelf/jest-mongodb": "^2.1.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.0",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.0",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"supertest": "^6.1.6",
"validator": "^13.7.0"
}
}