-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 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
{
"name": "react-runtime-monorepo",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*",
"examples/*"
],
"type": "module",
"scripts": {
"build": "turbo run build --filter=./packages/*",
"zip": "turbo run zip --filter=./packages/*",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"test": "turbo run test",
"test:ui": "vitest --ui --open",
"playwright:install": "playwright install --with-deps chromium",
"release": "semantic-release"
},
"devDependencies": {
"@eslint/json": "^0.13.2",
"@playwright/test": "^1.55.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.0.9",
"@vitest/ui": "^3.0.9",
"conventional-changelog-conventionalcommits": "^8.0.0",
"corepack": "^0.34.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.2.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vitest": "^0.5.4",
"happy-dom": "^17.4.4",
"playwright": "^1.55.0",
"prettier": "^3.0.0",
"rollup": "^4.39.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"semantic-release": "^24.2.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"ttypescript": "^1.5.15",
"turbo": "^2.1.3",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"resolutions": {
"effect": "3.17.14"
},
"dependencies": {
"effect": "^3.17.14",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"packageManager": "yarn@1.22.22"
}