-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "lymo",
"version": "1.0.0",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build --ws --if-present",
"be:start": "firebase emulators:start",
"be:dev": "concurrently \"npm run build:watch --workspace=@lymo/functions\" \"firebase emulators:start --import=./dev-data --export-on-exit=./dev-data\"",
"be:deploy": "npm run deploy --workspace=@lymo/functions",
"fe:start": "npm run start --workspace=@lymo/frontend",
"fe:start:prod": "npm run start --workspace=@lymo/frontend -- --no-dev",
"lint": "eslint --fix",
"postinstall": "patch-package"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"concurrently": "^9.2.1",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"patch-package": "^8.0.1",
"typescript-eslint": "^8.44.1"
}
}