-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.48 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "lathrop",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"copy_root": "cp out/index.html functions/",
"deploy": "firebase deploy --only hosting",
"build_export": "npm run build && npm run export && npm run copy_root",
"deploy_staging": "npm run build_export && firebase use default && npm run deploy",
"deploy_staging:functions": "firebase use default && npm run deploy:functions",
"deploy_prod": "npm run build_export && firebase use production && npm run deploy",
"lint": "next lint"
},
"dependencies": {
"@firebase/database-types": "^0.10.3",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@vercel/analytics": "^0.1.3",
"bootstrap": "^5.3.2",
"clsx": "^2.1.0",
"firebase": "^10.4.0",
"firebase-admin": "^11.10.1",
"firebase-functions": "^3.23.0",
"next": "^13.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.14.1",
"reactstrap": "^9.1.3",
"swiper": "^11.0.6"
},
"devDependencies": {
"@types/node": "18.7.3",
"@types/react": "^18.2.33",
"@types/react-dom": "18.0.6",
"@types/react-modal-video": "^1.2.3",
"eslint": "8.22.0",
"eslint-config-next": "^13.1.6",
"typescript": "^5.2.2"
}
}