forked from FirebaseExtended/karas-coffee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 860 Bytes
/
package.json
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": "extensions-demo",
"version": "0.0.0",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"lerna": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"dev": "cd website && yarn dev",
"build": "lerna run build",
"clean": "lerna run clean && lerna clean --yes",
"serve": "cd website && yarn serve",
"deploy:hosting": "cd website && yarn deploy"
},
"workspaces": {
"packages": [
"functions",
"tools",
"website"
]
}
}