-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.09 KB
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
{
"name": "podcast-api-demo",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@4.7.0",
"engines": {
"node": "22.x"
},
"dependencies": {
"podcast-api": "^2.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "yarn dev",
"build": "react-scripts build",
"deploy": "wrangler deploy",
"dev:web": "react-scripts start",
"dev:worker": "wrangler dev --port 8788",
"dev": "yarn build && concurrently -k -n WORKER,WEB \"yarn dev:worker\" \"yarn dev:web\""
},
"proxy": "http://127.0.0.1:8788",
"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": {
"@tailwindcss/postcss": "4.2.1",
"autoprefixer": "^10.4.12",
"concurrently": "^9.2.1",
"postcss": "^8.4.18",
"react-scripts": "5.0.1",
"tailwindcss": "4.2.1",
"wrangler": "4.104.0"
}
}