-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.79 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
{
"name": "clean-api",
"version": "2.0.0",
"description": "NodeJs Rest API and GraphQL using TDD, Clean Architecture, Typescript and Design Patterns",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./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",
"dev": "sucrase-node src/main/server.ts",
"check": "npm-check -s -u",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watchAll -c jest-unit-config.js",
"test:integration": "npm test -- --watchAll -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"prepare": "husky install"
},
"keywords": [],
"author": "Gilberto Mossmann",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@shelf/jest-mongodb": "^4.1.7",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/faker": "^6.6.9",
"@types/graphql": "^14.5.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"bson-objectid": "^2.0.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"mockdate": "^3.0.5",
"rimraf": "^5.0.1",
"sucrase": "^3.30.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.0",
"apollo-server-express": "^3.12.0",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.0",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^5.5.0",
"nodemon": "^2.0.21",
"swagger-ui-express": "^4.6.3",
"validator": "^13.9.0"
},
"_moduleAliases": {
"@": "dist"
}
}