-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.02 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.02 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
{
"name": "@enclave-vm/source",
"version": "1.0.0",
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "nx run-many -t build --outputStyle stream",
"test": "nx run-many -t test --outputStyle stream --skip-nx-cache",
"test:cached": "nx run-many -t test --outputStyle stream",
"lint": "nx run-many -t lint --outputStyle stream",
"format": "git show-ref --quiet refs/heads/main && git diff --name-only -z --diff-filter=ACMR main... | grep -zE '\\.(js|jsx|ts|tsx|json|css|scss|md|html|yml|yaml)$' | xargs -0 -I {} sh -c '[ -f \"$1\" ] && printf \"%s\\0\" \"$1\"' _ {} | xargs -0 -r prettier --write || prettier --write .",
"format:check": "git show-ref --quiet refs/heads/main && git diff --name-only -z --diff-filter=ACMR main... | grep -zE '\\.(js|jsx|ts|tsx|json|css|scss|md|html|yml|yaml)$' | xargs -0 -I {} sh -c '[ -f \"$1\" ] && printf \"%s\\0\" \"$1\"' _ {} | xargs -0 -r prettier --check || prettier --check .",
"format:all": "prettier --write .",
"format:all:check": "prettier --check .",
"prepare": "husky",
"docs": "cd docs && mint dev --port 4300"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md,html,yml,yaml}": "prettier --write"
},
"private": true,
"devDependencies": {
"@eslint/js": "^9.39.2",
"@nx/esbuild": "22.4.4",
"@nx/eslint": "22.4.4",
"@nx/eslint-plugin": "22.4.4",
"@nx/jest": "22.4.4",
"@nx/js": "22.4.4",
"@nx/node": "22.4.4",
"@nx/webpack": "22.4.4",
"@nx/workspace": "22.4.4",
"@playwright/test": "^1.58.2",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.11",
"@swc/helpers": "~0.5.18",
"@swc/jest": "~0.2.39",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-environment-node": "^30.2.0",
"jest-util": "^30.2.0",
"jsonc-eslint-parser": "^2.4.2",
"lint-staged": "^16.2.7",
"nx": "22.4.4",
"prettier": "^3.7.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"serve": "^14.2.5",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.54.0"
},
"workspaces": [
"apps/*",
"libs/*"
],
"nx": {
"includedScripts": []
},
"resolutions": {
"qs": "^6.14.2",
"node-forge": "^1.4.0",
"glob": "^10.5.0",
"jws": "^3.2.3",
"mdast-util-to-hast": "^13.2.1",
"js-yaml": "^4.1.1",
"handlebars": "^4.7.9",
"flatted": "^3.4.2",
"serialize-javascript": "^7.0.0",
"immutable": "^5.1.5"
}
}