-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 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
{
"name": "@plextv/react-native-lightning-example",
"description": "Sample implementation of @plextv/react-native-lightning in a React Native app",
"version": "0.4.0-alpha.13",
"author": "Plex Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/plexinc/react-lightning.git"
},
"bugs": {
"url": "https://github.com/plexinc/react-lightning/issues/new"
},
"packageManager": "pnpm@10.12.3",
"type": "module",
"private": true,
"scripts": {
"build": "vite build",
"clean": "del ./dist",
"dev": "vite --host",
"preview": "vite preview --host --port 3333",
"check:types": "tsc --noEmit",
"test:unit": "vitest run --passWithNoTests"
},
"dependencies": {
"@lightningjs/renderer": "3.0.0-beta16",
"@plextv/react-lightning": "workspace:*",
"@plextv/react-lightning-components": "workspace:*",
"@plextv/react-lightning-plugin-flexbox": "workspace:*",
"@plextv/react-lightning-plugin-reanimated": "workspace:*",
"@plextv/react-native-lightning": "workspace:*",
"@plextv/react-native-lightning-components": "workspace:*",
"@react-navigation/native": "7.1.18",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.82.0",
"react-native-reanimated": "4.1.3"
},
"devDependencies": {
"@babel/core": "7.28.4",
"@plextv/vite-plugin-msdf-fontgen": "workspace:*",
"@plextv/vite-plugin-react-native-lightning": "workspace:*",
"@plextv/vite-plugin-react-reanimated-lightning": "workspace:*",
"@repo/configs": "workspace:*",
"@shopify/flash-list": "2.2.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-legacy": "7.2.1",
"typescript": "5.9.3"
},
"volta": {
"extends": "../../package.json"
},
"//": "unsure why react-dom needed to be ignored...",
"depcheck": {
"ignoreMatches": [
"typescript",
"react-dom"
]
}
}