-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1012 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": "teruapp",
"version": "0.1.0",
"description": "Teruapp",
"author": "Giorgio Garasto <giorgio@garasto.me>",
"license": "MIT",
"private": true,
"scripts": {
"start": "lerna run start --stream",
"build": "lerna run build --stream",
"start:pwa": "yarn workspace @teruapp/pwa start",
"build:pwa": "yarn workspace @teruapp/pwa run build",
"start:functions": "yarn workspace @teruapp/functions start",
"build:functions": "yarn workspace @teruapp/functions run build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx functions/src pwa/src"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"firebase-tools": "^9.2.2",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"workspaces": [
"functions",
"pwa"
]
}