-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.06 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": "nodeseq",
"version": "1.0.0",
"description": "Node boilerplate with secure code analysis and quality checks",
"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 .",
"lint-fix": "eslint --fix .",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "husky",
"test:custom": "npm test -- tests/integration-tests",
"precommit": "npm run lint-fix && npm run format",
"prepush": "npm run lint ",
"test": "jest --silent --coverage",
"test:watch": "jest --watch",
"db:up": "docker-compose -f docker/postgresql/docker-compose.yml up",
"db:down": "docker-compose -f docker/postgresql/docker-compose.yml down"
},
"author": "Santosh Shinde",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.16.11",
"@types/swagger-ui-express": "^4.1.6",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"helmet": "^7.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.4",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"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": "^5.6.3",
"typescript-eslint": "^7.18.0"
}
}