forked from ardatan/feTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.64 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.64 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
{
"name": "fets-monorepo",
"private": true,
"workspaces": [
"website",
"packages/*",
"e2e/*",
"examples/*",
"benchmark"
],
"scripts": {
"build": "bob build",
"ci:lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts . --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": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext ts,tsx .",
"postinstall": "patch-package && husky install",
"prebuild": "yarn generate-swagger-ui && yarn generate-landing-page",
"prerelease": "yarn build",
"prerelease-canary": "yarn build",
"pretest": "yarn generate-swagger-ui && yarn generate-landing-page",
"prets:check": "yarn generate-swagger-ui && yarn generate-landing-page",
"prettier": "yarn prettier:check --write",
"prettier:check": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check .",
"release": "changeset publish",
"test": "jest --detectOpenHandles",
"test:integration": "cross-env \"INTEGRATION_TEST=true\" jest --detectOpenHandles --no-watchman",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.25.4",
"@babel/preset-typescript": "7.24.7",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.8",
"@theguild/prettier-config": "2.0.7",
"@types/jest": "29.5.13",
"@types/node": "22.5.5",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"bob-the-bundler": "7.0.1",
"cross-env": "7.0.3",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-tailwindcss": "3.17.4",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"patch-package": "8.0.0",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"resolutions": {
"@pulumi/pulumi": "3.133.0",
"next": "14.2.11"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,js,json,html}": [
"prettier --write"
]
}
}