-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.6 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": "moox.fr",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"prepare": "patch-package && husky && npm run svg && npm run markdown",
"dev": "vite dev",
"build": "npm run prepare && vite build",
"preview": "npx serve dist/client",
"lint": "oxlint --type-aware && tsc --noEmit",
"format": "prettier --write \"**/*.{js,json,ts,tsx,css,md}\" \"!package.json\"",
"clean": "npm run svg:clean",
"svg:clean": "rm -rf src/svgs/components",
"svg:web": "react-from-svg svgs src/svgs/components --with-native-for-typescript --allow-override-fill",
"svg": "npm run svg:clean && npm run svg:web",
"markdown": "markdown-to-json \"content/**/*.md\" public && node scripts/generate-content-indexes.mjs",
"test": "npm run lint && npm run build"
},
"overrides": {
"react-native": {
"react": "$react"
},
"react-native-web": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-native-gesture-handler": {
"react": "$react"
},
"react-native-safe-area-context": {
"react": "$react"
},
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.1.0",
"@react-native-clipboard/clipboard": "^1.16.1",
"@tanstack/react-router": "^1.121.0",
"@tanstack/react-start": "^1.121.0",
"@types/react-native-web": "^0.19.0",
"@types/tinycolor2": "^1.4.6",
"buffer": "^6.0.3",
"date-fns": "^4.1.0",
"react": "^19.2",
"react-dom": "^19.2",
"react-native-gesture-handler": "^2.21.2",
"react-native-reanimated": "4.0.0-beta.2",
"react-native-safe-area-context": "^4.14.0",
"react-native-svg": "^15.10.1",
"react-native-web": "^0.20.0",
"react-native-worklets": "^0.1.0",
"tinycolor2": "^1.6.0",
"ts-pattern": "^5.5.0"
},
"devDependencies": {
"@moox/eslint-plugin-react-strict-dom": "^0.1.1",
"@moox/markdown-to-json": "^1.0.0",
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/react": "^19.2",
"@types/react-dom": "^19.2",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"oxlint": "^1.43.0",
"oxlint-tsgolint": "^0.11.5",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"react-from-svg": "^8.0.2",
"react-native": "^0.79",
"typescript": "^5.8",
"vite": "^7.3.1",
"vite-plugin-cjs-interop": "^2.4.1",
"vite-plugin-react-native-web": "^2.7.1",
"vite-tsconfig-paths": "^5.1.0"
}
}