-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 802 Bytes
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
{
"name": "mono-faucet",
"version": "1.0.0",
"description": "Repo for faucet UI and firebase functions",
"main": "index.js",
"repository": "https://github.com/celo-org/faucet.git",
"author": "cLabs",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "yarn --cwd apps/web dev",
"build": "yarn workspaces foreach --all --parallel run build",
"lint": "yarn --cwd apps/web lint --fix && yarn --cwd apps/firebase lint --fix",
"postinstall": "husky install",
"prettify": "yarn prettier --write \"apps/**/*.{ts,tsx}\" --ignore-path=./.gitignore"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "9.1.7",
"prettier": "^3.9.6"
},
"engines": {
"node": "24"
},
"packageManager": "yarn@4.3.1"
}