-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.29 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
98
99
{
"name": "@trustify-ui/root",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/guacsec/trustify-ui.git"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"generate": "npm run generate -ws --if-present",
"clean": "rimraf ./dist && npm run clean -ws --if-present",
"clean:all": "npm run clean:all -ws --if-present && rimraf ./dist ./node_modules",
"dist": "rimraf ./dist && copyfiles -e 'node_modules/**' entrypoint.sh '**/package.json' '*/dist/**/*' ./dist",
"lint": "npm run lint -ws --if-present",
"lint:fix": "npm run lint:fix -ws --if-present",
"format": "npm run format -ws --if-present",
"format:fix": "npm run format:fix -ws --if-present",
"build": "npm run build -ws --if-present",
"prepare": "npm run generate && husky",
"start:dev:common": "npm run start:dev -w common",
"start:dev:server": "npm run start:dev -w server",
"start:dev:client": "npm run start:dev -w client",
"start:dev": "npm run build -w common && concurrently -n common,client -c 'white.bold.inverse,green.bold.inverse,blue.bold.inverse' 'npm:start:dev:common' 'npm:start:dev:client'",
"start": "npm run build -w common -w client && npm run start -w server",
"test": "npm run test -w common -w client -w server --if-present --",
"e2e:codegen": "npm run codegen -w e2e --if-present --",
"e2e:test": "npm run test -w e2e --if-present --",
"e2e:test:api": "npm run test:api -w e2e --if-present --",
"e2e:test:ui": "npm run test:ui -w e2e --if-present --",
"e2e:test:ui:trace": "npm run test:ui:trace -w e2e --if-present --",
"e2e:test:ui:host": "npm run test:ui:host -w e2e --if-present --"
},
"workspaces": [
"common",
"client",
"server",
"e2e"
],
"dependencies": {
"typescript": "~6.0.3"
},
"peerDependencies": {
"react": "19.1.1",
"react-dom": "19.1.1",
"typescript": "~6.0.3"
},
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"@playwright/test": "1.60.0",
"playwright": "1.60.0",
"playwright-core": "1.60.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint-react/eslint-plugin": "^5.7.7",
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-run": "^3.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@rollup/plugin-virtual": "^3.0.2",
"@tanstack/eslint-plugin-query": "^5.100.10",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.1.9",
"concurrently": "^10.0.3",
"copyfiles": "^2.4.1",
"cross-env": "^10.0.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.7.4",
"rimraf": "^6.0.1",
"rollup": "^4.62.2",
"rollup-plugin-copy": "^3.5.0",
"ts-node": "^10.9.1",
"typescript-eslint": "^8.59.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json}": [
"prettier --write"
]
}
}