This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.71 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
{
"name": "@momoi/app",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "run-s build:packages:css build:packages:react build:momoi build:packages:react:docs",
"build:momoi": "tsc && vite build",
"build:packages:css": "pnpm -rF @momoi/css build",
"build:packages:react": "pnpm -rF @momoi/react build",
"build:packages:react:docs": "pnpm -rF @momoi/react build:docs",
"dev": "run-p dev:packages:css dev:packages:react dev:momoi",
"dev:all": "run-s dev:docs dev:momoi",
"dev:docs": "run-p dev:packages:css dev:packages:react:docs",
"dev:momoi": "vite --host 0.0.0.0",
"dev:packages:css": "pnpm -rF @momoi/css dev",
"dev:packages:react": "pnpm -rF @momoi/react dev",
"dev:packages:react:docs": "pnpm -rF @momoi/react dev:docs --host 0.0.0.0",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"preinstall": "npx -y only-allow pnpm && npx -y nolyfill install --pm pnpm",
"preview": "vite preview"
},
"dependencies": {
"@generouted/react-router": "^1.15.5",
"@hookform/resolvers": "^3.3.1",
"@mantine/hooks": "7.0.0-beta.0",
"@matrix-org/olm": "^3.2.15",
"@momoi/react": "workspace:*",
"@vanilla-extract/css": "^1.12.0",
"@vanilla-extract/css-utils": "^0.1.3",
"@vanilla-extract/dynamic": "^2.0.3",
"@vanilla-extract/recipes": "^0.5.0",
"@vanilla-extract/sprinkles": "^1.6.1",
"forgetti": "^0.7.0",
"foxact": "^0.2.20",
"matrix-js-sdk": "^27.2.0",
"million": "^2.5.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-router-dom": "^6.15.0",
"react-secure-storage": "^1.3.0",
"swr": "^2.2.2",
"unhead": "^1.3.7",
"valibot": "^0.14.0"
},
"devDependencies": {
"@antfu/eslint-config-react": "^0.40.2",
"@momoi/css": "workspace:*",
"@types/node": "^20.6.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@unhead/addons": "^1.3.7",
"@vanilla-extract/esbuild-plugin": "^2.3.0",
"@vanilla-extract/vite-plugin": "^3.8.2",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.47.0",
"eslint-plugin-perfectionist": "^1.5.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"fast-glob": "^3.3.1",
"lightningcss": "^1.21.5",
"npm-run-all": "^4.1.5",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-forgetti": "^0.7.0",
"vite-tsconfig-paths": "^4.2.0"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"deep-equal": "npm:@nolyfill/deep-equal@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"has": "npm:@nolyfill/has@latest",
"is-generator-function": "npm:@nolyfill/is-generator-function@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"string.prototype.padend": "npm:@nolyfill/string.prototype.padend@latest"
}
}
}