-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 852 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
{
"name": "tweeted-links",
"version": "1.0.0",
"description": "Shared tooling for our entire Firebase project (functions and website)",
"scripts": {
"deploy": "firebase deploy",
"dev": "npm run serve & npm run dev --prefix site",
"predev": "npm run build --prefix functions",
"postinstall": "npm ci --prefix functions --audit false && npm ci --prefix site --audit false",
"login": "firebase login",
"lint": "eslint . --ext .js,.ts,.tsx",
"serve": "firebase emulators:start --only functions,hosting"
},
"engines": {
"node": "18"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.11.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"typescript": "^5.0.4"
},
"private": true
}