-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 788 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 788 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
{
"name": "esbuild-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "tsc --noEmit",
"dev:tsc": "tsc --noEmit --watch --preserveWatchOutput",
"dev:build": "node esbuild.config.dev.js",
"dev:start": "node --watch dist/bundle.js",
"dev:test": "vitest --watch",
"dev": "run-p dev:*",
"build": "node esbuild.config.prod.js",
"start": "node dist/bundle.js",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.18.6",
"esbuild": "^0.19.5",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}