-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.23 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
{
"name": "express-typescript-boilerplate",
"version": "1.0.0",
"description": "An Express.js boilerplate backend",
"main": "index.ts",
"scripts": {
"ts:check": "tsc --noEmit",
"dev": "tsx watch --clear-screen=false src/index.ts",
"build": "rimraf build && tsc",
"start:local": "npm run build && node --import tsx --env-file=.env build/src/index.js",
"start": "tsx watch --clear-screen=false build/src/index.js",
"migrate": "npm run build && tsx build/src/db/migrate.js",
"migrate:local": "npm run build && tsx --env-file=.env build/src/db/migrate.js",
"lint": "eslint --fix --ext .ts,.js src/ tests/",
"format": "prettier --write 'src/**/*.{ts,js,json}' 'tests/**/*.{ts,js,json}'",
"test": "jest",
"docker:build": "docker-compose build",
"docker:build:test": "docker-compose -f docker-compose-tests.yaml build",
"docker:start": "docker-compose up",
"docker:start:test": "docker-compose -f docker-compose-tests.yaml run api-tests && docker-compose -f docker-compose-tests.yaml down",
"docker:stop": "docker-compose down"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^6.3.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"kysely": "^0.27.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/pg": "^8.11.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.6",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"author": "Edwin Hernandez",
"repository": "edwinhern/express-typescript-2024",
"license": "ISC"
}