-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.76 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.76 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "scratchyjs",
"private": true,
"type": "module",
"license": "MIT",
"author": "A-J Roos <asjasroos@proton.me>",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "pnpm run --parallel --filter \"./examples/**\" --if-present dev",
"build": "turbo build",
"test": "turbo test:run",
"test:run": "vitest run",
"test:coverage": "turbo test:coverage:run",
"test:coverage:run": "vitest run --coverage",
"lint": "eslint --cache --cache-location .cache/eslint --cache-strategy content .",
"prettier": "prettier \"**/*.+(ts|tsx|json|md|yaml|yml)\"",
"format": "prettier \"**/*.+(ts|tsx|json|md|yaml|yml)\" --write --cache --cache-location .cache/prettier",
"check-format": "prettier \"**/*.+(ts|tsx|json|md|yaml|yml)\" --list-different --cache --cache-location .cache/prettier",
"typecheck": "turbo typecheck",
"validate": "pnpm check-format && pnpm lint && pnpm typecheck",
"clean": "rimraf .turbo {packages,examples}/*/node_modules {packages,examples}/*/dist {packages,examples}/*/.turbo {packages,examples}/*/.cache {packages,examples}/*/*.tsbuildinfo node_modules/",
"prepare": "husky",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:docs": "cypress run --spec \"cypress/e2e/**\"",
"bench": "vitest bench --config vitest.bench.config.ts",
"bench:ci": "vitest bench --run --config vitest.bench.config.ts"
},
"lint-staged": {
"*.{html,js,jsx,ts,tsx,md,json,yaml,yml}": [
"prettier --write --cache --cache-location .cache/prettier",
"eslint --cache --cache-location .cache/eslint --cache-strategy content --fix"
]
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
},
"onlyBuiltDependencies": [
"cypress",
"esbuild",
"sharp",
"workerd"
],
"ignoredBuiltDependencies": [
"argon2"
]
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@total-typescript/ts-reset": "0.6.1",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@vitest/coverage-istanbul": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"cypress": "15.14.0",
"eslint": "10.2.1",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-security": "4.0.0",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"turbo": "2.9.6",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vitepress": "1.6.4",
"vitest": "4.1.4",
"wait-on": "9.0.5",
"wrangler": "4.84.0"
}
}