-
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.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 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": "hotsou-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"app",
"server"
],
"scripts": {
"app:start": "npm run start -w hotsou",
"android": "npm run android -w hotsou",
"update:android": "npm run update:android -w hotsou",
"typegen": "npm run cf-typegen -w hotsou-server",
"test:short-link": "node scripts/test-short-link.mjs",
"app:ios": "npm run ios -w hotsou",
"app:web": "npm run web -w hotsou",
"app:doctor": "npm run doctor -w hotsou",
"app:check-unused": "npm run check-unused -w hotsou",
"app:build:android": "npm run build:android -w hotsou",
"app:build:preview": "npm run build:preview -w hotsou",
"server:dev": "npm run dev -w hotsou-server",
"server:deploy": "npm run deploy -w hotsou-server",
"lint": "npm run lint --workspaces --if-present",
"format": "oxfmt . --write",
"type-check": "npm run type-check --workspaces"
},
"devDependencies": {
"eslint-plugin-expo": "^1.0.0",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"oxfmt": "^0.24.0",
"oxlint": "^1.51.0",
"typescript": "~5.9.2"
}
}