-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "foodiemaps",
"private": true,
"version": "1.0.0",
"workspaces": [
"apps/web",
"apps/server",
"apps/mobile"
],
"scripts": {
"dev:web": "npm --workspace apps/web run dev",
"dev:web:3002": "PORT=3002 next dev -p 3002 -p 3002",
"build:web": "npm --workspace apps/web run build",
"start:web": "npm --workspace apps/web run start",
"dev:server": "npm --workspace apps/server run dev",
"start:server": "npm --workspace apps/server run start",
"dev:mobile": "npm --workspace apps/mobile run start",
"dev:mobile:ios": "npm --workspace apps/mobile run ios",
"dev:mobile:android": "npm --workspace apps/mobile run android",
"dev:all": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"dev:all:two-web": "concurrently \"npm run dev:server\" \"npm run dev:web\" \"npm run dev:web:3002\"",
"dev:all:mobile": "concurrently \"npm run dev:server\" \"npm run dev:mobile\"",
"dev:full": "concurrently \"npm run dev:server\" \"npm run dev:web\" \"npm run dev:mobile\"",
"build": "npm run build:web && npm run build:server",
"build:mobile": "npm --workspace apps/mobile run build",
"build:all": "npm run build:web && npm run build:server && npm run build:mobile",
"build:server": "npm --workspace apps/server run build",
"start:prod": "concurrently \"npm run start:server\" \"npm run start:web\"",
"install:all": "npm install && npm --workspace apps/web install && npm --workspace apps/server install && npm --workspace apps/mobile install",
"clean": "rm -rf node_modules apps/*/node_modules apps/*/.next apps/*/dist",
"lint": "eslint apps/*/src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint apps/*/src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"apps/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"apps/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"prepare": "husky install || true",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"setup:env": "node scripts/setup-env.js"
},
"dependencies": {
"axios": "^1.12.2",
"firebase": "^12.4.0",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"concurrently": "^9.2.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.4.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"prettier": "^3.2.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@testing-library/react": "^14.2.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/user-event": "^14.5.2",
"jest-environment-node": "^29.7.0"
},
"lint-staged": {
"apps/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"apps/**/*.{json,css,md}": [
"prettier --write"
]
}
}