-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "agronavis",
"version": "1.0.0",
"private": true,
"description": "🌾 Agronavis — Enterprise Farm Assistant Platform",
"workspaces": [
"apps/*",
"backend",
"packages/*"
],
"scripts": {
"dev:mobile": "npm run dev --workspace=apps/mobile",
"dev:backend": "npm run dev --workspace=backend",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:mobile\"",
"lint": "npm run lint --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf {} + && find . -name 'dist' -type d -prune -exec rm -rf {} +"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"react-native-svg": "15.12.1",
"react-native-worklets": "0.5.1"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"overrides": {
"react-native-svg": "15.12.1",
"react-native-worklets": "0.5.1"
}
}