Ntabukiraniro commited on
Commit
23dc3ba
1 Parent(s): be77781

Upload 3 files

Browse files
Files changed (3) hide show
  1. package-lock.json +0 -0
  2. package.json +44 -0
  3. tsconfig.json +23 -0
package-lock.json ADDED
The diff for this file is too large to render. See raw diff
 
package.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "streamlit_component_template",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "dependencies": {
6
+ "@types/jest": "^24.0.0",
7
+ "@types/node": "^12.0.0",
8
+ "@types/react": "^16.9.0",
9
+ "@types/react-dom": "^16.9.0",
10
+ "audio-react-recorder": "^1.0.4",
11
+ "axios": "^0.27.2",
12
+ "normalize.css": "^8.0.1",
13
+ "react": "^16.13.1",
14
+ "react-dom": "^16.13.1",
15
+ "react-media-recorder": "^1.6.4",
16
+ "react-scripts": "3.4.1",
17
+ "streamlit-component-lib": "^1.4.0",
18
+ "turbodepot-node": "^7.0.1",
19
+ "typescript": "~3.8.0",
20
+ "use-media-recorder": "^2.0.4"
21
+ },
22
+ "scripts": {
23
+ "start": "react-scripts start",
24
+ "build": "react-scripts build",
25
+ "test": "react-scripts test",
26
+ "eject": "react-scripts eject"
27
+ },
28
+ "eslintConfig": {
29
+ "extends": "react-app"
30
+ },
31
+ "browserslist": {
32
+ "production": [
33
+ ">0.2%",
34
+ "not dead",
35
+ "not op_mini all"
36
+ ],
37
+ "development": [
38
+ "last 1 chrome version",
39
+ "last 1 firefox version",
40
+ "last 1 safari version"
41
+ ]
42
+ },
43
+ "homepage": "."
44
+ }
tsconfig.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es5",
4
+ "lib": ["dom", "dom.iterable", "esnext"],
5
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "esModuleInterop": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "strict": true,
10
+ "strictNullChecks":false,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "module": "esnext",
13
+ "moduleResolution": "node",
14
+ "resolveJsonModule": true,
15
+ "isolatedModules": true,
16
+ "noEmit": true,
17
+ "jsx": "react",
18
+ "noImplicitAny": false,
19
+ },
20
+ "include": [
21
+ "src"
22
+ ]
23
+ }