-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "clean-node-api",
"version": "3.2.0",
"description": "Node.js Rest API using TDD, Clean Architecture and TypeScript",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"build:watch": "rimraf dist && tsc -p tsconfig-build.json -w",
"postbuild": "copyfiles -u 1 public/**/* dist/static",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"up": "npm run build && docker-compose up -d",
"down": "docker-compose down",
"check": "npm-check -s -u",
"prepare": "husky install",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm run test -- --watch -c jest-unit-config.js",
"test:integration": "npm run test -- --watch -c jest-integration-config.js",
"test:staged": "npm run test -- --findRelatedTests .",
"test:ci": "npm run test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"test:clear": "jest --clearCache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielAraldi/clean-node-api.git"
},
"keywords": [
"Clean Architecture",
"Clean Code",
"SOLID",
"Design Patterns",
"TDD",
"DDD"
],
"author": "Daniel Sansão Araldi",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielAraldi/clean-node-api/issues"
},
"homepage": "https://github.com/DanielAraldi/clean-node-api#readme",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@shelf/jest-mongodb": "^4.1.6",
"@types/bcrypt": "^5.0.0",
"@types/copyfiles": "^2.4.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/module-alias": "^2.0.1",
"@types/node": "^18.14.2",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.12",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.0.0",
"git-commit-msg-linter": "^4.7.4",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"mockdate": "^3.0.5",
"rimraf": "^4.1.2",
"supertest": "^6.2.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@graphql-tools/schema": "^9.0.16",
"@graphql-tools/utils": "^9.2.1",
"bcrypt": "^5.0.1",
"express": "^4.18.1",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongodb": "^4.17.0",
"nodemon": "^2.0.20",
"swagger-ui-express": "^4.6.2",
"validator": "^13.9.0"
},
"engines": {
"node": ">=14.x <=16.x"
},
"_moduleAliases": {
"@": "dist"
}
}