-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
{
"name": "clean-survey-api",
"version": "1.0.0",
"description": "Clean architecture applied to a surveys API.",
"main": "index.js",
"author": "Bruno Lombardi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcrypt": "^3.0.1",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.12",
"@types/node": "^14.14.37",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "4",
"eslint": "7",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "4",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sucrase": "^3.18.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"start": "node dist/main/server.js",
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "sucrase-node src/main/server.ts",
"test": "jest --passWithNoTests --silent --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.ts",
"test:integration": "yarn test --watch -c jest-integration-config.ts",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"postinstall": "husky install"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"fast-glob": "^3.2.5",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"validator": "^13.5.2"
}
}