-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (46 loc) · 1.12 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ev-react-framework",
"type": "module",
"version": "0.0.0",
"description": "React fullstack framework built on TanStack + Hono",
"private": true,
"packageManager": "npm@11.6.2",
"workspaces": [
"packages/*",
"examples/*",
"docs"
],
"homepage": "https://github.com/evaijs/evjs#readme",
"bugs": {
"url": "https://github.com/evaijs/evjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evaijs/evjs.git"
},
"license": "MIT",
"author": "xusd320",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"dev": "turbo dev",
"lint": "biome check .",
"format": "biome format --write .",
"check-types": "turbo check-types",
"prepare": "husky"
},
"bin": {
"ev": "packages/cli/bin/ev.js"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@playwright/test": "^1.58.2",
"@swc/core": "^1.15.21",
"@tailwindcss/postcss": "^4.1.10",
"husky": "^9.1.7",
"tailwindcss": "^4.1.10",
"turbo": "^2.4.2",
"vitest": "^4.0.18"
}
}