-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.69 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.69 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "node-ts-starter",
"version": "1.0.0",
"description": "node boilerplate",
"main": "index.js",
"engines": {
"node": "24",
"pnpm": "^10"
},
"scripts": {
"build-sass": "sass src/public/css/main.scss dist/public/css/main.css",
"build-ts": "tsc",
"build": "pnpm run build-sass && pnpm run build-ts && pnpm run lint && pnpm run copy-static-assets",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "pnpm run build && pnpm run watch-debug",
"format": "prettier --ignore-path .prettierignore --write \"src/**/*.+(js|ts|json)\" \"test/**/*.+(js|ts|json)\"",
"lint": "pnpm run format && eslint --fix",
"serve-debug": "nodemon --inspect dist/server.js",
"serve": "node dist/server.js",
"start": "pnpm run serve",
"test": "vitest run --coverage",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"pnpm run watch-sass\" \"pnpm run watch-ts\" \"pnpm run serve-debug\"",
"watch-node": "nodemon dist/server.js",
"watch-sass": "sass --watch src/public/css/main.scss dist/public/css/main.css",
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"pnpm run watch-sass\" \"pnpm run watch-ts\" \"pnpm run watch-node\"",
"doc": "typedoc --out docs --entryPointStrategy expand ./src",
"doc:serve": "serve docs",
"coverage:serve": "serve coverage/lcov-report",
"prepare": "husky install",
"pre-commit": "lint-staged",
"postman": "node -e 'require(\"./dist/util/postman.js\").run()'",
"createSSL": "./scripts/create-ssl.sh"
},
"author": "Gaurav Bharti",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@eslint/js": "^9.10.0",
"@types/async": "3.2.25",
"@types/bcrypt": "6.0.0",
"@types/body-parser": "^1.19.5",
"@types/compression": "1.8.1",
"@types/cors": "2.8.19",
"@types/errorhandler": "1.5.3",
"@types/express": "^5.0.1",
"@types/express-flash": "0.0.5",
"@types/express-session": "1.18.2",
"@types/jquery": "^3.5.32",
"@types/jsonwebtoken": "^9.0.9",
"@types/lusca": "1.7.5",
"@types/ms": "^2.1.0",
"@types/node": "^24.0.0",
"@types/shelljs": "^0.10.0",
"@types/supertest": "^6.0.0",
"@types/swagger-jsdoc": "6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitest/coverage-v8": "^4.0.0",
"concurrently": "^9.0.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.0.2",
"husky": "9.1.7",
"lint-staged": "^16.0.0",
"nodemon": "3.1.11",
"prettier": "^3.5.3",
"sass": "^1.80.3",
"serve": "^14.2.4",
"supertest": "7.2.2",
"ts-node": "10.9.2",
"typedoc": "^0.28.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.5.0",
"vitest": "^4.0.0"
},
"dependencies": {
"async": "^3.2.2",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"compression": "^1.7.4",
"connect-mongo": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.0.0",
"errorhandler": "^1.5.1",
"express": "^5.1.0",
"express-flash": "^0.0.2",
"express-session": "^1.18.1",
"express-winston": "^4.2.0",
"globals": "^17.0.0",
"joi": "^18.0.0",
"jsonwebtoken": "^9.0.2",
"logform": "^2.7.0",
"lusca": "^1.7.0",
"mongoose": "^9.0.0",
"openapi-to-postmanv2": "^5.0.0",
"pug": "^3.0.3",
"shelljs": "^0.10.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^5.0.0",
"winston": "^3.3.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"bcrypt"
]
}
}