-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.77 KB
/
package.json
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"e2e"
],
"scripts": {
"clean": "yarn workspaces run clean",
"build": "yarn workspaces run build",
"test": "jest --watch",
"test:all": "jest --coverage --maxWorkers=50%",
"tsc": "yarn workspaces run tsc",
"lint": "yarn workspaces run lint",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"depcheck": "yarn workspaces run depcheck",
"deduplicate": "yarn-deduplicate",
"prepare": "husky",
"release": "node ./scripts/publishAllPackages.js",
"version": "node ./scripts/versionAllPackages.js",
"docker:build": "yarn workspaces run docker:build",
"e2e": "yarn workspace e2e e2e",
"e2e:build": "yarn workspace e2e e2e:build"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@changesets/cli": "^2.27.1",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "~5.0.4",
"yarn-deduplicate": "^6.0.2"
},
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.1 <2.0.0"
},
"dependencies": {},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --max-warnings=0",
"bash -c \"yarn tsc --pretty\"",
"prettier --write"
],
"*": [
"bash -c \"yarn depcheck\""
],
"*.{yaml,yml,json,md}": [
"prettier --write"
]
}
}