forked from williamkoller/clean-ts-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.92 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
62
63
{
"name": "clean-node-api",
"version": "1.2.0",
"description": "NodeJS Rest API using TDd, Clean Architecture and Typescript",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc",
"debug": "node --inspect=0.0.0.0:9222 --nolazy dist/main/server.js",
"up": "npm run build && docker-compose up -d",
"down": "docker-compose down",
"test": "jest --passWithNoTests --silent --noStackTrace --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",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"author": "William Koller",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.5",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.1.4",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongodb": "^3.5.8",
"@types/node": "^13.11.1",
"@types/supertest": "^2.0.8",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-commit-msg-linter": "^2.4.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.0",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"dependencies": {
"bcrypt": "^4.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.6",
"validator": "^13.0.0"
},
"engines": {
"node": "12.x"
}
}