-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 783 Bytes
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
{
"name": "mobilex",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"adb": "adb connect 192.168.1.73:5555",
"appium": "appium",
"dev": "pnpm run adb && pnpm run postgres && concurrently -n appium,backend,frontend pnpm:appium pnpm:dev:backend pnpm:dev:frontend",
"dev:backend": "cd backend && dotnet watch run",
"dev:frontend": "cd frontend && pnpm start",
"postgres": "sudo service postgresql start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"commander": "^11.0.0",
"concurrently": "^8.2.1",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"pg": "^8.11.3",
"webdriverio": "^8.15.6"
}
}