-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.63 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.63 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@stratakit/test-app",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "wireit",
"dev": "wireit",
"preview": "wireit",
"test": "wireit",
"typecheck": "wireit"
},
"imports": {
"#playwright": "./playwright.config.ts"
},
"dependencies": {
"@ariakit/react": "^0.4.25",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "catalog:",
"@mui/utils": "catalog:",
"@react-router/node": "^7.13.2",
"@stratakit/bricks": "workspace:*",
"@stratakit/foundations": "workspace:*",
"@stratakit/icons": "workspace:*",
"@stratakit/mui": "workspace:*",
"@stratakit/structures": "workspace:*",
"@tanstack/react-query": "^5.97.0",
"classnames": "^2.5.1",
"examples": "workspace:*",
"immer": "^11.1.4",
"isbot": "^5.1.37",
"react": "catalog:",
"react-dom": "catalog:",
"react-resizable-panels": "^3.0.6",
"react-router": "^7.13.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "catalog:",
"@react-router/dev": "^7.13.2",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"esbuild": "catalog:",
"lightningcss": "catalog:",
"typescript": "catalog:",
"vite": "^7.3.2",
"vite-plugin-babel": "^1.6.0",
"vite-plugin-devtools-json": "^1.0.0",
"vite-tsconfig-paths": "^6.1.1"
},
"wireit": {
"build": {
"command": "react-router build",
"dependencies": [
"../../packages/foundations:build",
"../../packages/bricks:build",
"../../packages/structures:build",
"../../packages/icons:build",
"../../packages/mui:build"
],
"files": [
"app",
"vite.config.ts",
"react-router.config.ts"
],
"output": [
"build",
".react-router"
],
"env": {
"NODE_ENV": "production"
}
},
"dev": {
"command": "react-router dev",
"dependencies": [
"../../packages/icons:build",
"../../packages/foundations:dev",
"../../packages/bricks:dev",
"../../packages/structures:dev",
"../../packages/mui:dev"
],
"service": true
},
"preview": {
"command": "pnpx serve build/client -L -p 1800",
"dependencies": [
"build"
],
"service": true
},
"test": {
"command": "tsx ./scripts/run-tests.ts pnpm exec playwright test",
"dependencies": [
"build",
"typecheck"
],
"files": [
"app",
"playwright.config.ts"
],
"output": [
"test-results"
]
},
"typecheck": {
"command": "react-router typegen && tsc -p tsconfig.build.json",
"dependencies": [
"build"
],
"files": [
"app",
"tsconfig.build.json"
],
"output": []
}
}
}