-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
34 lines (34 loc) · 922 Bytes
/
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
{
"name": "shiny-react-example",
"version": "0.1.0",
"description": "Example of a Shiny app with a React front-end",
"scripts": {
"start": "Rscript main.R",
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.5",
"bootstrap": "^5.1.3",
"css-loader": "^3.6.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"reactstrap": "^9.0.2",
"recharts": "^2.1.9",
"style-loader": "^2.0.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"webpack-dev-server": "^4.8.1"
}
}