-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 860 Bytes
/
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
{
"name": "devcontainers_template",
"version": "1.0.0",
"description": "my devcontainer",
"main": "index.js",
"scripts": {
"start": "PORT=3000 node --watch src/index.js",
"test": "npx vitest run",
"test:watch": "npx vitest",
"test:debug": "npx vitest --inspectBrk --poolOptions.threads.singleThread",
"fmt": "npx @biomejs/biome format <files|src> --write",
"lint": "npx @biomejs/biome lint <files|src>",
"lint:safefix": "npx @biomejs/biome lint <files|src> --apply",
"lint:fmt:safefix": "npx @biomejs/biome check <files|src> --apply",
"prepare": "husky"
},
"keywords": [],
"author": "elvitin",
"license": "MIT",
"type": "module",
"engines": {
"node": "v20.11.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"husky": "^9.0.11"
},
"dependencies": {
"undici": "^6.7.0"
}
}