-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
47
48
49
50
51
52
53
{
"name": "lr3",
"version": "0.0.1",
"private": true,
"dependencies": {
"clipboard": "^2.0.8",
"concurrently": "^6.0.2",
"firebase": "^8.4.1",
"node-sass": "^6.0.0",
"react": "^17.0.2",
"react-countup": "^4.3.3",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^3.0.3",
"react-qr-svg": "^2.3.0",
"react-scripts": "^4.0.3",
"react-snap": "^1.23.0",
"ua-parser-js": "^0.7.28",
"web-vitals": "^2.0.1",
"webln": "^0.2.2"
},
"proxy": "http://localhost:5000",
"homepage": "https://lightning-roulette.com",
"scripts": {
"start": "concurrently \"react-scripts start\" \"firebase serve\"",
"build": "react-scripts build",
"build:deploy": "npm run build && npm run deploy:web",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy:functions": "firebase deploy --only functions",
"deploy:rules": "firebase deploy --only firestore:rules",
"deploy:web": "firebase deploy --only hosting",
"deploy:services": "sh ./deploy-services.sh",
"postbuild": "react-snap"
},
"eslintConfig": {
"extends": "react-app"
},
"reactSnap": {
"skipThirdPartyRequests": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}