-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "@roninjin10/example-server",
"version": "1.0.0",
"main": "dist/roninjin10-example-server.cjs.js",
"module": "dist/roninjin10-example-server.esm.js",
"license": "MIT",
"files": [
"dist",
"scripts/run"
],
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"preconstruct": {
"entrypoints": [
"index.ts",
"scripts/run.ts"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit",
"envSchema": "ts-node src/scripts/envSchema.ts",
"build": "preconstruct build",
"release": "npm publish",
"release:dry": "npm publish --dry-run",
"kill": "npx kill-port 7300",
"start": "nodemon src/scripts/run.ts",
"serve": "node scripts/run/dist/roninjin10-example-server-scripts-run.cjs.js",
"test": "echo 'No tests implemented'",
"lint": "eslint \"**/*.{ts,tsx}\" --fix && prettier \"src/**/*.{ts,tsx}\" --write",
"lint:check": "eslint \"**/*.{ts,tsx}\" && prettier --check \"src/**/*.{ts,tsx}\""
},
"dependencies": {
"@preconstruct/cli": "^2.2.2",
"@prisma/client": "^4.6.1",
"@trpc/server": "^10.5.0",
"eslint-config-prettier": "^8.5.0",
"fastify": "^4.10.2",
"fastify-metrics": "^10.0.1",
"prisma": "^4.7.1",
"superjson": "^1.10.1",
"trpc-playground": "^1.0.4",
"zod": "^3.20.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel": "^6.23.0",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-simple-import-sort": "^8.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}