-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "node-typescript-boilerplate",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/src/server.js",
"dev": "nodemon index.js",
"build": "tsc -p . && cp package.json ./build/package.json && cp package-lock.json ./build/package-lock.json && cp .env ./build/.env",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "husky",
"test:custom": "npm test -- tests/unit-tests/lib/crypto.spec.ts",
"precommit": "npm run lint-fix && npm run format",
"prepush": "npm run lint ",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Santosh Shinde",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.9.1",
"@types/swagger-ui-express": "^4.1.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"swagger-ui-express": "^5.0.1",
"typescript": "^5.6.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-to-sonar": "^1.3.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.15.0"
}
}