-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "speech2code.webapp",
"description": "The webapp react implementation of the speech2code frontend",
"version": "0.0.2-beta.1",
"private": true,
"dependencies": {
"codemirror": "^5.62.0",
"microsoft-cognitiveservices-speech-sdk": "^1.16.0",
"node-sass": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-scripts": "4.0.3",
"react-tooltip": "^4.2.21",
"spoken": "file:../spoken/dist",
"typescript": "^4.2.3"
},
"scripts": {
"start": "SET PORT=5000 && react-scripts start",
"build": "npm run build-spoken && react-scripts build",
"build-only": "react-scripts build --silent",
"test": "react-scripts test --watchAll=false",
"eject": "react-scripts eject",
"prestart": "npm run build-spoken",
"build-spoken": "cd ../spoken && npm run build && cp dist/grammar.json ../webapp/public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3000",
"devDependencies": {
"@types/codemirror": "^5.60.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.21",
"@types/node": "^12.20.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2"
}
}