-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.65 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
{
"name": "clean-api",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"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",
"down": "docker-compose down",
"test": "jest -w 2 --passWithNoTests --silent --noStackTrace",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm run test -- --onlyChanged --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"
},
"keywords": [
"typescript",
"tdd",
"api",
"rest",
"clean",
"node"
],
"author": "Guilherme Teixeira Ais",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@shelf/jest-mongodb": "^2.2.2",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/faker": "^6.6.9",
"@types/graphql": "^14.5.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.25",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"apollo-server-integration-testing": "^3.0.0",
"bson-objectid": "^2.0.3",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"faker": "^6.6.6",
"git-commit-msg-linter": "^4.1.1",
"husky": "4.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"mockdate": "^3.0.5",
"rimraf": "^3.0.2",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "4.4"
},
"dependencies": {
"apollo-server-express": "^2.19.1",
"bcrypt": "^5.0.1",
"express": "^4.18.1",
"graphql": "^15.4.0",
"graphql-iso-date": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^4.5.0",
"nodemon": "^2.0.16",
"swagger-ui-express": "^4.5.0",
"validator": "^13.7.0"
},
"engines": {
"node": "16.x"
},
"_moduleAliases": {
"@": "dist"
}
}