-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.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
{
"name": "e-survey",
"version": "1.1.0",
"description": "NodeJs Rest API and GraphQL using TDD, Clean Architecture, Typescript and Design Patterns",
"main": "index.js",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit.config.ts",
"test:integration": "npm test -- --watch -c jest-integration.config.ts",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"author": "ericknathan",
"license": "GPL-3.0-or-later",
"repository": "github:ericknathan/e-survey",
"homepage": "https://github.com/ericknathan/e-survey",
"devDependencies": {
"@shelf/jest-mongodb": "^3.0.2",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^4.0.7",
"@types/node": "^18.0.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"git-commit-msg-linter": "^4.1.3",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"sucrase": "^3.23.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@types/validator": "^13.7.4",
"bcrypt": "^5.0.1",
"express": "^4.18.1",
"fast-glob": "^3.2.11",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"validator": "^13.7.0"
}
}