-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.04 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "fets-monorepo",
"private": true,
"workspaces": [
"website",
"packages/*",
"e2e/*",
"examples/*",
"benchmark"
],
"packageManager": "npm@11.12.1",
"scripts": {
"build": "bob build",
"ci:lint": "eslint . --output-file eslint_report.json --format json",
"esm:check": "bob check",
"generate-landing-page": "node ./packages/fets/scripts/generate-landing-page.cjs",
"generate-swagger-ui": "node ./packages/fets/scripts/generate-swagger-ui.cjs",
"lint": "eslint .",
"postinstall": "patch-package",
"prebuild": "npm run generate-swagger-ui && npm run generate-landing-page",
"precommit": "npx lint-staged",
"prerelease": "npm run build",
"prerelease-canary": "npm run build",
"pretest": "npm run generate-swagger-ui && npm run generate-landing-page",
"prets:check": "npm run generate-swagger-ui && npm run generate-landing-page",
"prettier": "npm run prettier:check -- --write",
"prettier:check": "npx prettier --ignore-path .gitignore --ignore-path .prettierignore --check .",
"release": "changeset publish",
"test": "jest --detectOpenHandles --detectLeaks",
"test:integration": "cross-env \"INTEGRATION_TEST=true\" jest --detectOpenHandles --no-watchman",
"ts:check": "tsc --noEmit",
"version": "changeset version"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.29.2",
"@babel/preset-typescript": "7.28.5",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.31.0",
"@eslint/js": "^10.0.1",
"@theguild/prettier-config": "^3.0.1",
"@types/jest": "30.0.0",
"@types/js-yaml": "4.0.9",
"@types/node": "25.6.0",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"ansi-styles": "6.2.3",
"babel-jest": "30.3.0",
"bob-the-bundler": "7.0.1",
"cookie": "1.1.1",
"cross-env": "10.1.0",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-tailwindcss": "3.18.3",
"husky": "9.1.7",
"jest": "30.3.0",
"js-yaml": "4.1.1",
"lint-staged": "16.4.0",
"patch-package": "8.0.1",
"prettier": "3.8.2",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"ts-jest": "29.4.9",
"tslib": "2.8.1",
"typescript": "6.0.3",
"webpack": "5.106.1"
},
"overrides": {
"@pulumi/pulumi": "3.231.0",
"braces": "3.0.3",
"cookie": "1.1.1",
"diff": "9.0.0",
"dompurify": "3.4.0",
"esbuild": "0.28.0",
"estree-util-value-to-estree": "3.5.0",
"js-yaml": "4.1.1",
"micromatch": "4.0.8",
"next": "16.2.2",
"prismjs": "1.30.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"tmp": "0.2.5",
"webpack": "5.106.1"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,js,json,html}": [
"prettier --write"
]
}
}