-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (81 loc) · 2.61 KB
/
package.json
File metadata and controls
86 lines (81 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ts-node-api",
"version": "0.0.1",
"main": "./dist/backend/index.js",
"homepage": "https://ts-node-api.diegoalto.app",
"scripts": {
"stop": "pm2 stop all",
"dev": "dotenvx run -- pm2-runtime start ecosystem.config.js --only dev",
"start": "dotenvx run -- pm2-runtime start ecosystem.config.js --only prod",
"dev:backend": "NODE_ENV=development dotenvx run -- tsx ./backend",
"start:backend": "NODE_ENV=production dotenvx run -- node ./dist/backend",
"dev:frontend": "next dev frontend",
"start:frontend": "next start dist/frontend",
"build:frontend": "next build frontend",
"postbuild:frontend": "cp -rf frontend dist && rm -rf dist/frontend/src",
"clean": "gts clean",
"prebuild": "gts clean",
"build": "tsc -p tsconfig.build.json && npm run build:frontend",
"postbuild": "tsc-alias",
"tidy": "npm run lint && npm run fix",
"lint": "gts lint",
"fix": "gts fix",
"prepare": "husky",
"predocs": "NODE_ENV=production dotenvx run -- tsx ./docs/generator.ts",
"docs": "openapi-to-md -s ./docs/openapi.json ./docs/README.md",
"test": "dotenvx run -- vitest --run",
"test:watch": "dotenvx run -- vitest",
"posttest": "npm run lint",
"reset": "rm -rf node_modules package-lock.json && npm i"
},
"author": "diegoaltoworks",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.2",
"eslint-plugin-vitest": "^0.5.4",
"gts": "^5.3.1",
"husky": "^9.1.5",
"msw-trpc": "^2.0.0-beta.1",
"openapi-to-md": "^1.0.24",
"supertest": "^7.0.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.0",
"typescript": "^5.6.2",
"vitest": "^2.0.5",
"vitest-mock-extended": "^2.0.2"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.14.0",
"@scalar/express-api-reference": "^0.4.150",
"@sentry/node": "^8.29.0",
"@sentry/profiling-node": "^8.29.0",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"cors": "^2.8.5",
"envalid": "^8.0.0",
"express": "^4.20.0",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"newrelic": "^12.3.1",
"next": "^14.2.12",
"pm2": "^5.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.79.1",
"trpc-openapi": "^1.2.0",
"trpc-panel": "^1.3.4",
"winston": "^3.14.2",
"winston-transport-sentry-node": "^3.0.0",
"zod": "^3.23.8"
},
"engines": {
"node": ">=22"
}
}