-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "open-poll",
"version": "1.0.0",
"private": true,
"description": "OpenPoll monorepo with functions/ and web/ workspaces",
"workspaces": [
"functions",
"web"
],
"engines": {
"node": "22"
},
"scripts": {
"prepare": "husky",
"lint": "npm -ws run lint",
"build": "npm -ws run build",
"lint:functions": "npm -w functions run lint",
"lint:web": "npm -w web run lint",
"build:functions": "npm -w functions run build",
"build:web": "npm -w web run build",
"emulators": "npm run build:functions && npm -w functions exec -- firebase emulators:start --only auth,functions,firestore",
"emulators:only": "npm -w functions exec -- firebase emulators:start --only auth,functions,firestore",
"dev": "concurrently -n WEB,EMU -c blue,magenta \"npm -w web run dev\" \"npm run emulators\""
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"concurrently": "^9.2.0",
"husky": "^9.1.7"
},
"author": "",
"license": "ISC"
}