-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "node-api-boilerplate",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development tsx src/index.ts",
"start:watch": "NODE_ENV=development tsx watch src/index.ts",
"start:prod": "NODE_ENV=production tsx src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"prepare": "husky install",
"create:resource": "plop resource",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.mjs --format=esm --external:./node_modules/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/config": "^3.3.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"plop": "^4.0.0",
"prettier": "^3.0.3",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@hono/node-server": "^1.2.0",
"config": "^3.3.9",
"dotenv": "^16.3.1",
"hono": "^3.9.2",
"zod": "^3.22.4"
}
}