-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 768 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 768 Bytes
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
{
"name": "sylan-node",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"pino": "^9.4.0",
"undici": "^6.19.8",
"viem": "^2.13.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.5.4",
"eslint": "^9.8.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"tsx": "^4.19.2",
"typescript": "^5.6.2"
}
}