-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.89 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
66
67
68
69
70
71
72
73
{
"name": "speechstate",
"version": "0.2.0",
"license": "GPL-3.0",
"homepage": "http://localhost/speechstate",
"private": true,
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.1"
},
"scripts": {
"start": "parcel src/index.tsx",
"build": "parcel build src/index.tsx --no-source-maps --dist-dir dist/",
"serve": "npx serve dist/ -l 80",
"predeploy": "rm -rf dist && parcel build src/index.tsx --no-source-maps --dist-dir dist/",
"deploy": "gh-pages -d dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**/*.html"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@xstate/inspect": "^0.7.0",
"@xstate/react": "^3.0.1",
"buffer": "^5.5.0",
"crypto-browserify": "^3.12.0",
"events": "^3.1.0",
"gh-pages": "^3.2.3",
"https-browserify": "^1.0.0",
"microsoft-cognitiveservices-speech-sdk": "^1.24.1",
"parcel": "^2.8.3",
"parcel-reporter-static-files-copy": "^1.4.0",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"serve": "^12.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"typescript": "^4.4.2",
"url": "^0.11.0",
"util": "^0.12.3",
"web-speech-cognitive-services": "^7.1.2",
"web-vitals": "^2.1.0",
"xstate": "^4.34.0"
}
}