-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.39 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
{
"name": "djangoboilerplate",
"version": "1.0.0",
"description": "A boilerplate Django project for quickly getting started",
"main": "index.js",
"scripts": {
"start-accounts": "webpack --mode development --watch ./frontend/src/index.js --output ./frontend/static/frontend/main.js ",
"start-main": "webpack --mode development --watch ./mainFrontend/src/index.js --output ./mainFrontend/static/mainFrontend/main.js ",
"build": "webpack --mode production ./frontend/src/index.js --output ./frontend/static/frontend/main.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.9.4",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"formik": "^2.0.8",
"react": "^16.8.6",
"react-datepicker": "^2.10.1",
"react-dom": "^16.8.6",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.1.0",
"react-icons": "^3.8.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-form": "^8.2.5",
"redux-thunk": "^2.3.0",
"style-loader": "^1.1.2",
"styled-components": "^4.4.1",
"webpack": "^4.38.0"
},
"devDependencies": {
"css-loader": "^3.4.0",
"webpack-cli": "^3.3.11"
}
}