-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "ts-backend-template",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/main/main.ts",
"type-check": "tsc",
"build": "esbuild src/main/main.ts --bundle --packages=external --platform=node --format=esm --outdir=dist --sourcemap",
"lint": "eslint --cache --ext \".js,.ts,.tsx\" --report-unused-disable-directives src",
"start": "yarn dev",
"migrate": "flyway -url=jdbc:postgresql://$DB_HOST:$DB_PORT/$DB_NAME -user=$DB_USER -password=$DB_PASSWORD -locations=migrations migrate"
},
"dependencies": {
"@ts-rest/core": "3.30.5",
"@ts-rest/express": "3.30.5",
"@ts-rest/open-api": "3.30.5",
"@types/slonik": "22.1.11",
"convict": "6.2.4",
"express": "4.18.2",
"firebase-admin": "11.11.1",
"slonik": "37.2.0",
"swagger-ui-express": "5.0.0",
"winston": "3.11.0",
"zod": "3.22.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/convict": "6.1.6",
"@types/express": "4.17.21",
"@types/node": "20.9.4",
"@types/swagger-ui-express": "4.1.6",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
"esbuild": "0.19.7",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"start-server-and-test": "2.0.3",
"tsx": "4.3.0",
"typescript": "5.3.2",
"wait-port": "1.1.0"
},
"publishConfig": {
"access": "restricted"
}
}