-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
{
"name": "devframe-monorepo",
"type": "module",
"version": "0.3.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/devframes/devframe#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/devframes/devframe.git"
},
"bugs": "https://github.com/devframes/devframe/issues",
"scripts": {
"build": "turbo run build",
"watch": "pnpm -r run watch",
"docs": "pnpm -C docs run docs",
"docs:build": "pnpm -C docs run docs:build",
"docs:serve": "pnpm -C docs run docs:serve",
"lint": "eslint --cache",
"test": "turbo run build && vitest",
"test:e2e": "turbo run build && playwright test",
"test:e2e:ui": "turbo run build && playwright test --ui",
"release": "bumpp -r",
"typecheck": "tsc -b",
"postinstall": "npx simple-git-hooks && skills-npm"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:devtools",
"@antfu/ni": "catalog:build",
"@antfu/utils": "catalog:inlined",
"@playwright/test": "catalog:testing",
"@types/node": "catalog:types",
"@types/ws": "catalog:types",
"bumpp": "catalog:devtools",
"eslint": "catalog:devtools",
"nano-staged": "catalog:devtools",
"simple-git-hooks": "catalog:devtools",
"skills-npm": "catalog:devtools",
"tsdown": "catalog:build",
"tsnapi": "catalog:testing",
"tsx": "catalog:build",
"turbo": "catalog:build",
"typescript": "catalog:devtools",
"vite": "catalog:build",
"vitest": "catalog:testing"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx nano-staged"
},
"nano-staged": {
"*": "eslint --fix"
}
}