-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
94 lines (94 loc) · 3.6 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
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
{
"name": "@dzcode.io/root",
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.10.0",
"@prettier/plugin-pug": "^3.1.0",
"@sentry/cli": "^2.36.0",
"@types/jest": "^29.5.13",
"@types/node": "^20",
"@types/semver": "^7.3.9",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"delay-cli": "^2.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^5.1.0-rc-206df66e-20240912",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"jiti": "^1.21.6",
"lerna": "^8.1.8",
"lint-staged": "^12.1.2",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"patch-package": "^6.5.1",
"prettier": "^3.3.3",
"semver": "^7.3.5",
"syncpack": "^13.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"ts-prune": "^0.10.3",
"tsx": "^4.19.1",
"typescript": "5.5.3",
"typescript-eslint": "^8.5.0",
"typescript-transform-paths": "^3.5.0",
"wait-port": "^1.1.0"
},
"engines": {
"node": ">=20",
"npm": ">=10",
"yarn": "Please use npm"
},
"lint-staged": {
"**/package.json": [
"syncpack format"
],
"./*.*": [
"prettier --config ./packages/tooling/.prettierrc --ignore-path ./packages/tooling/.prettierignore --log-level warn --write"
]
},
"private": true,
"scripts": {
"build": "lerna run build:alone --stream",
"build:watch": "lerna run build:alone:watch --parallel --stream",
"clean": "lerna run clean:alone --stream",
"deploy": "lerna run deploy --parallel",
"deploy:stg": "lerna run deploy:stg --parallel",
"dev": "echo \"Please run one of these commands:\\n\\nnpm run dev:web\\nnpm run dev:api\\nnpm run dev:all\n\"",
"dev:all": "npm-run-all \"build --include-dependencies {@}\" --parallel \"build:watch --include-dependencies {@}\" \"start:dev {@}\" --",
"dev:api": "npm run dev:all [email protected]/api",
"dev:web": "npm run dev:all [email protected]/web",
"e2e:all": "npm-run-all \"build --include-dependencies {@}\" --parallel \"build:watch --include-dependencies {@}\" \"start:dev {@}\" \"e2e:dev [email protected]/web\" --",
"e2e:dev": "lerna run e2e:dev --parallel",
"e2e:web": "BROWSER=none npm run e2e:all [email protected]/{web,api}",
"generate:bundle-info": "lerna run generate:bundle-info --parallel --",
"generate:sentry-release": "lerna run generate:sentry-release --concurrency 1 --stream --",
"lint": "npm run build && npm run lint:alone",
"lint:alone": "lerna run lint:alone --parallel",
"lint:fix": "npm run build && npm run lint:fix:alone",
"lint:fix:alone": "lerna run lint:fix:alone --parallel",
"lint:staged": "lerna exec --since HEAD --concurrency 1 --stream -- lint-staged && lint-staged",
"patch-package": "patch-package --patch-dir packages/tooling/patches",
"postinstall": "npm run patch-package && (husky install && husky set .husky/pre-commit \"npm run lint:staged\") || exit 0",
"pre-deploy": "lerna run pre-deploy --parallel",
"prepare": "ts-patch install -s",
"start:dev": "lerna run start:dev --parallel --stream",
"test": "npm run build && npm run test:alone",
"test:alone": "lerna run test:alone --stream",
"version:apply": "tsx packages/tooling/version-apply.ts",
"version:push": "tsx packages/tooling/version-push.ts"
},
"workspaces": [
"packages/*",
"api",
"data",
"web",
"web/cloudflare"
]
}