-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 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
{
"name": "testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run tsc",
"start": "./bin/start",
"start:prod": "node ./dist/index.js",
"start:dev": "ts-node-dev ./index.ts",
"dev": "nodemon --exec 'npm run start:dev' | pino-pretty",
"tsc": "tsc",
"lint": "eslint \"*.ts\" --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration",
"test:all": "jest",
"test:unit": "jest \"./tests/unit/\"",
"test:integration": "jest \"./tests/integration/\"",
"postinstall": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"swagger-ui-express": "^5.0.0",
"typescript": "^5.3.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/express-pino-logger": "^4.0.5",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.1",
"@types/supertest": "^2.0.16",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"babel-eslint": "^10.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}