-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 KB
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
{
"name": "clean-node-api",
"version": "1.0.0",
"main": "index.js",
"author": "William Franklin <wilfrank84@gmail.com>",
"license": "MIT",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"commit": "git-cz",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand --no-cache",
"test:full": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.4",
"@types/bcrypt": "^3.0.1",
"@types/express": "^4.17.11",
"@types/jest": "^25.2.3",
"@types/mongodb": "^3.6.12",
"@types/node": "^14.14.37",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"commitizen": "^4.2.3",
"eslint": "^7.24.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"sucrase": "^3.18.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"typescript": "^3.9.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"fast-glob": "^3.2.5",
"mongodb": "^3.6.6",
"validator": "^13.5.2"
}
}