-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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
54
55
56
57
58
59
60
{
"name": "keshatv",
"version": "0.1.0-alpha.11",
"private": true,
"description": "On demand streaming using ipfs",
"license": "MIT",
"scripts": {
"clean": "rimraf ./build",
"build": "npm run clean && react-scripts build",
"build:desktop": "PUBLIC_URL='.' npm run build && mkdir desktop/keshatv || echo '...' && cp -r build/* desktop/keshatv",
"deploy": "npm run build && firebase deploy",
"deploy:web:ci": "npm run build && firebase deploy --token \\\"$FIREBASE_TOKEN\\\" --only --only hosting",
"deploy:desktop:snap": "npm run build:desktop && bash desktop.sh",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test:react": "react-scripts test",
"test": "npm run build && playwright test tests"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"bfast": "^6.0.0-alpha.19",
"dot-prop": "^6.0.1",
"firebase": "^9.6.2",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hls-player": "^3.0.7",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"tachyons": "^4.12.0",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@playwright/test": "^1.17.1",
"playwright": "^1.17.1",
"rimraf": "^3.0.2"
}
}