-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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
{
"name": "create-ezntem-app",
"version": "1.0.0",
"description": "Boilerplate of Node Typescript Express server with MongoDB database for REST API",
"main": "src/server.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:check": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "eslint --fix",
"prettier:check": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --write .",
"lint-prettier:check": "npm run prettier:check && npm run lint:check",
"lint-prettier:fix": "npm run prettier:fix && npm run lint:fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.ts": "npm run lint-prettier:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zarif007/ez-node-ts-express-mongoose-boilerplate.git"
},
"author": "zarif",
"license": "ISC",
"bugs": {
"url": "https://github.com/zarif007/ez-node-ts-express-mongoose-boilerplate/issues"
},
"homepage": "https://github.com/zarif007/ez-node-ts-express-mongoose-boilerplate#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"concurrently": "^8.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"http-status": "^1.6.2",
"joi": "^17.9.2",
"mongoose": "^7.2.4",
"nodemon": "^2.0.22",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.21.4"
}
}