-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "aws-workshop-0-hls-streaming-fe",
"version": "1.0.0",
"main": "src/index.tsx",
"type": "module",
"scripts": {
"start": "http-server --cors -p 8080",
"build:webpack": "webpack NODE_ENV=production --config webpack.config.js",
"dev:webpack": "NODE_ENV=development webpack serve --config webpack.config.js",
"build": "vite build",
"dev": "vite serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"video",
"streaming",
"upload"
],
"author": "hdthinh1012",
"license": "ISC",
"description": "",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@loadable/babel-plugin": "^5.16.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@types/react-dom": "^18.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"hls.js": "^1.5.15",
"http-server": "^14.1.1",
"lucide-react": "^0.439.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.45",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.11",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"vite": "^5.4.4",
"vite-plugin-simple-html": "^0.1.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}