-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "express-ts-jest-template",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"engines": {
"npm": "^9",
"node": ">=20.6.1",
"chalk": "4.1.2"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore . --max-warnings 0",
"build:dev": "tsc --project tsconfig.build.json -w",
"build": "tsc --project tsconfig.build.json",
"start": "node .",
"start:dev": "node --watch .",
"test": "jest",
"test:dev": "jest --watchAll",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"bcrypt": "^5.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"express-validation": "^4.1.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.1.0",
"mongodb-memory-server-core": "^9.1.1",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^4.1.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^8.0.1",
"morgan": "^1.10.0"
}
}