-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
61
62
63
64
65
{
"name": "react-pwa",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"ffmpeg": "0.0.4",
"ffmpeg-extract-audio": "^1.0.2",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.15",
"minimist": "^1.2.4",
"node-vad": "^1.1.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-use": "^13.27.0",
"serve-index": "^1.9.1",
"voice-activity-detection": "0.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-sw": "http-serve ./build",
"predeploy": "env-cmd -f .env.production npm run build",
"deploy": "gh-pages -d build",
"app-env": "node_modules/concurrently/bin/concurrently.js \"nodemon server/index\" \"npm run start\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^5.1.0",
"env-cmd": "^10.1.0",
"gh-pages": "^2.2.0",
"http-serve": "^1.0.1",
"https-serve": "^1.0.0",
"node-sass": "^4.13.1"
},
"resolutions": {
"node-sass": "npm:sass"
}
}