-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "templete-node-ts-express-jest",
"version": "1.0.0",
"description": "a best practice templete for follow industries standards and clean code",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "nodemon",
"build": "tsc && tsc-alias",
"typecheck": "tsc --noEmit",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "jest --no-cache --coverage --all --runInBand --detectOpenHandles",
"test:watch": "jest --watch",
"test:e2e": "jest e2e --config=e2e/jest.config.js --detectOpenHandles",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/yash-bansod-2003/templete-node-express-ts-jest.git"
},
"keywords": [
"node",
"express",
"typescript",
"jest"
],
"author": "yash gajanan bansod",
"license": "ISC",
"bugs": {
"url": "https://github.com/yash-bansod-2003/templete-node-express-ts-jest/issues"
},
"homepage": "https://github.com/yash-bansod-2003/templete-node-express-ts-jest#readme",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@jest/globals": "^29.7.0",
"@types/babel__core": "^7.20.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/style-guide": "^5.2.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.10",
"install": "^0.13.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.3",
"prettier": "3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"winston": "^3.11.0"
},
"dependencies": {
"@types/http-errors": "^2.0.4",
"axios": "^1.6.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"mongoose": "^8.1.2",
"morgan": "^1.10.0",
"prom-client": "^15.1.0"
}
}