-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.52 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.52 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
{
"name": "form2js-monorepo",
"private": true,
"type": "module",
"packageManager": "npm@11.6.2",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=@form2js/*",
"docs": "npm run build:packages && npm -w @form2js/docs run dev",
"docs:build": "npm run build:packages && npm -w @form2js/docs run build",
"test": "npm run test:packages && npm run test:integration && npm run test:docs",
"test:docs": "npm run build:packages && DOCS_E2E_PORT=4329 npm -w @form2js/docs run test:e2e",
"test:packages": "turbo run test",
"test:integration": "vitest run test/integration",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rimraf node_modules .turbo",
"pack:dry-run": "npm_config_cache=/tmp/form2js-npm-cache npm pack --dry-run --workspace @form2js/core && npm_config_cache=/tmp/form2js-npm-cache npm pack --dry-run --workspace @form2js/dom && npm_config_cache=/tmp/form2js-npm-cache npm pack --dry-run --workspace @form2js/form-data && npm_config_cache=/tmp/form2js-npm-cache npm pack --dry-run --workspace @form2js/js2form && npm_config_cache=/tmp/form2js-npm-cache npm pack --dry-run --workspace @form2js/jquery && npm_config_cache=/tmp/form2js-npm-cache npm pack --dry-run --workspace @form2js/react",
"changeset": "changeset",
"release": "changeset publish",
"scope:rewrite": "node scripts/rewrite-scope.mjs",
"bump-version": "node scripts/bump-version.mjs"
},
"overrides": {
"minimatch": {
"brace-expansion": "1.1.13"
},
"@typescript-eslint/typescript-estree": {
"minimatch": {
"brace-expansion": "2.0.3"
}
},
"micromatch": {
"picomatch": "2.3.2"
},
"astro": {
"@rollup/pluginutils": {
"picomatch": "4.0.4"
}
},
"vite": {
"picomatch": "4.0.4"
},
"@rollup/pluginutils": {
"picomatch": "4.0.4"
},
"tinyglobby": {
"picomatch": "4.0.4"
},
"vitest": {
"picomatch": "4.0.4"
},
"smol-toml": "1.6.1",
"yaml": "2.8.3"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.22.0",
"@types/jsdom": "^21.1.7",
"eslint": "^9.22.0",
"jsdom": "^26.0.0",
"picomatch": "^4.0.4",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.35.1",
"vitest": "^4.1.2"
}
}