-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.11 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.5",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"pre-commit": "lint-staged",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig-build.json",
"postbuild": "copyfiles -u -1 public/**/* dist/static",
"lint": "eslint 'src/**' --fix",
"check": "npm-check -s -u",
"dev": "sucrase-node src/main/server.ts",
"debug": "nodemon --watch ./dist --inspect --nolazy dist/main/server.js",
"test": "jest --passWithNoTests --noStackTrace --runInBand",
"test:clear": "jest --passWithNoTests --noStackTrace --runInBand --clearCache",
"test:verbose": "jest --passWithNoTests",
"test:dev": "npm test -- --watch --noStackTrace -c jest-unit-config.js",
"test:unit": "npm test -- --noStackTrace -c jest-unit-config.js",
"test:integration": "npm test -- -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests ./src",
"test:ci": "npm test -- --coverage",
"pretest:coveralls": "npm run test:ci",
"test:coveralls": "coveralls < coverage/lcov.info",
"prepare": "husky install"
},
"author": "Guilherme Alexandre Rocha Pereira",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.6",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.16",
"@types/express-serve-static-core": "^4.17.33",
"@types/faker": "^5.5.3",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.3",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongodb": "^4.0.7",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.11",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"bson-objectid": "^2.0.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"faker": "^5.5.3",
"git-commit-msg-linter": "^4.5.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"lint-staged": "^13.1.0",
"mockdate": "^3.0.5",
"npm-check": "^6.0.1",
"rimraf": "^4.1.2",
"sucrase": "^3.29.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@graphql-tools/schema": "^9.0.14",
"@graphql-tools/utils": "^9.1.4",
"apollo-server-express": "^3.11.1",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-depth-limit": "^1.1.0",
"graphql-scalars": "^1.20.1",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^4.13.0",
"nodemon": "^2.0.20",
"swagger-ui-express": "^4.6.0",
"validator": "^13.7.0"
},
"engines": {
"node": "14.17.x"
},
"_moduleAliases": {
"@": "dist"
}
}