-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
129 lines (129 loc) · 3.49 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
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
122
123
124
125
126
127
128
129
{
"private": true,
"name": "expo-atlas-ui",
"version": "0.0.0",
"main": "expo-router/entry",
"scripts": {
"build": "expo export --platform web --output-dir ../expo-atlas/build/atlas-ui",
"clean": "git clean -xdf build",
"lint": "eslint . --ext js,ts,tsx",
"start": "expo start",
"typecheck": "tsc --noEmit",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@expo/styleguide": "^8.2.5",
"@expo/styleguide-native": "^7.0.1",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.53.1",
"class-variance-authority": "^0.7.0",
"echarts": "^5.5.1",
"echarts-for-react": "^3.0.2",
"expo": "~52.0.4",
"expo-linking": "~7.0.2",
"expo-router": "~4.0.2",
"expo-status-bar": "~2.0.0",
"lucide-react": "^0.437.0",
"nativewind": "^4.0.36",
"picomatch": "^4.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.1",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-svg": "15.8.0",
"react-native-web": "~0.19.6",
"shiki": "1.15.1",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/picomatch": "^3.0.1",
"@types/react": "~18.3.12",
"expo-atlas": "workspace:*"
},
"eslintConfig": {
"extends": "universe",
"ignorePatterns": [
"build",
"dist",
"node_modules",
"expo-env.d.ts"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
},
"overrides": [
{
"files": [
"src/app/**/*.ts",
"!src/app/**/*+api.ts"
],
"extends": [
"universe/web"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
}
},
{
"files": [
"*.config.js",
"webui/src/app/**/*+api.ts"
],
"extends": [
"universe/node"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
}
}
]
}
}