-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 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
{
"name": "quickwise",
"version": "1.0.0",
"private": true,
"workspaces": [
"mobile",
"backend",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:mobile\"",
"dev:mobile": "cd mobile && npm run start",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:shared && npm run build:backend && npm run build:mobile",
"build:shared": "cd shared && npm run build",
"build:backend": "cd backend && npm run build",
"build:mobile": "cd mobile && npm run build",
"test": "npm run test:backend && npm run test:mobile",
"test:backend": "cd backend && npm test",
"test:mobile": "cd mobile && npm test",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,md,yml,yaml}\" && eslint \"**/*.{js,ts,jsx,tsx}\" --fix",
"lint": "eslint \"**/*.{js,ts,jsx,tsx}\" --max-warnings 0",
"lint:fix": "eslint \"**/*.{js,ts,jsx,tsx}\" --fix",
"android": "cd mobile && npx expo run:android",
"ios": "cd mobile && npx expo run:ios",
"start": "cd mobile && npx expo start"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"concurrently": "^7.6.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@expo/vector-icons": "^15.0.2",
"expo": "~54.0.9",
"react": "19.1.0",
"react-native": "0.81.4"
}
}