-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 989 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 989 Bytes
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
{
"name": "shiny-react-example",
"version": "0.1.0",
"description": "Example of a Shiny app with a React front-end",
"type": "module",
"scripts": {
"start": "Rscript dev.R",
"build": "vite build",
"format": "prettier --write src",
"lint": "eslint src",
"watch": "vite build --watch"
},
"license": "MIT",
"dependencies": {
"@posit/shiny-react": "^0.0.15",
"bootstrap": "^5.3.7",
"prop-types": "^15.8.1",
"react": "^19.1.1",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.1",
"recharts": "^3.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"vite": "^7.1.3"
}
}