-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
64
65
66
67
68
{
"name": "typezero",
"version": "0.3.0",
"description": "Zero-config TypeScript starter for modern Node.js development. ESM, Vitest, ESLint, Prettier. Production-ready in seconds! ⚡",
"main": "build/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"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": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22.0.0"
},
"volta": {
"node": "22.13.1",
"pnpm": "10.0.0"
}
}