-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.09 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.09 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
{
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "tsc",
"build": "node scripts/build.js",
"start": "node dist/index.js",
"prod": "node scripts/run.js --sync cleanup lint build start",
"dev:lint": "tsc --watch --preserveWatchOutput",
"dev:start": "node --watch dist/index.js",
"dev:build": "node scripts/build.js --watch",
"dev:pre": "node scripts/run.js --sync cleanup lint build",
"dev:scripts": "node scripts/run.js dev:lint dev:start dev:build",
"dev": "node scripts/run.js --sync dev:pre dev:scripts",
"cleanup": "node scripts/cleanup.js dist",
"prepare": "husky",
"setup": "node scripts/setup.js"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"esbuild": "^0.23.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^9.1.5"
}
}