-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.19 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
66
67
68
69
70
71
72
{
"private": true,
"name": "@fiuzagr/acme-api-service",
"version": "1.0.0",
"port": "8000",
"packageManager": "^npm@9.2.0",
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc",
"check-types": "tsc --skipLibCheck --noEmit",
"clean": "rimraf .turbo node_modules build",
"dev": "cross-env LOG_LEVEL=debug node-dev --notify=false src/index.ts | pino-pretty",
"lint": "cross-env TIMING=1 eslint 'src/**/*.{js,ts}'",
"format": "npm run lint -- --fix",
"format:staged": "cross-env TIMING=1 eslint --fix",
"start": "cross-env NODE_ENV=production node build/src/index.js",
"prepare": "husky install",
"git:pre-commit": "npm run lint:staged",
"git:prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true",
"lint:staged": "lint-staged",
"test": "jest",
"test:staged": "jest --bail --passWithNoTests --findRelatedTests"
},
"dependencies": {
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"pino": "^8.8.0",
"pino-http": "^8.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cz-commitlint": "^17.3.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"commitizen": "^4.2.6",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.17.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.2",
"inquirer": "^8.2.5",
"lint-staged": "^13.1.0",
"node-dev": "^8.0.0",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}