-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 1020 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
{
"dependencies": {
"@headlessui/react": "^2.1.4",
"axios": "^1.2.2",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"express": "^4.18.2",
"firebase": "^9.15.0",
"firebase-functions": "^4.2.1",
"googleapis": "^105.0.0",
"react-phone-number-input": "^3.3.9",
"react-select": "^5.8.0"
},
"scripts": {
"lint": "eslint . --ext js,jsx,ts,tsx --fix",
"postinstall": "cd functions && npm install && cd ../checkers-app && npm install",
"serve": "firebase emulators:start --project checkmate-uat --import ./local-data --export-on-exit ./local-data",
"predeploy:uat": "cd checkers-app && npm run build:uat && cd ../functions && npm run build",
"predeploy:prod": "cd checkers-app && npm run build && cd ../functions && npm run build",
"deploy:uat": "firebase deploy --project=uat --only functions,hosting --force",
"deploy:prod": "firebase deploy --project=prod --only functions,hosting --force"
},
"devDependencies": {
"@telegraf/types": "^7.1.0"
}
}