-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.39 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "typezero",
"version": "0.4.1",
"description": "Zero-config TypeScript starter for modern Node.js development. ESM, Biome, Vitest. Production-ready in seconds! ⚡",
"main": "build/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"check": "biome check .",
"fix": "biome check --fix .",
"format": "biome format --write .",
"test": "vitest src --silent",
"test:coverage": "vitest run --coverage --silent",
"clean": "rimraf build",
"build": "rimraf build && tsc && tsc-alias",
"start": "node build/index.js"
},
"author": {
"name": "Mohammad Islam",
"url": "https://www.mislam.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mislam/typezero.git"
},
"homepage": "https://typezero.dev",
"keywords": [
"nodejs",
"node.js",
"typescript",
"express",
"vitest",
"backend",
"starter-kit",
"template",
"boilerplate",
"starter"
],
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"globals": "^15.14.0",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22.0.0"
},
"volta": {
"node": "22.13.1",
"pnpm": "10.0.0"
}
}