-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "lead-react-django",
"version": "0.0.1",
"description": "Lead RESTful API using REACT and Django",
"main": "app.js",
"scripts": {
"dev": "webpack --mode development --watch ./leadusermanager/frontend/src/index.js --output ./leadusermanager/frontend/static/frontend/main.js",
"build": "webpack --mode production ./leadusermanager/frontend/src/index.js --output ./leadusermanager/frontend/static/frontend/main.js",
"serve": "python ./leadusermanager/manage.py runserver"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/belachkar/lead-react-django.git"
},
"keywords": [
"django",
"react",
"redux",
"rest",
"restful"
],
"author": "Belachkar Ali",
"license": "ISC",
"bugs": {
"url": "https://github.com/belachkar/lead-react-django/issues"
},
"homepage": "https://github.com/belachkar/lead-react-django#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-eslint": "^10.1.0",
"eslint-plugin-react": "^7.16.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"redux-devtools-extension": "^2.13.8",
"prop-types": "^15.7.2",
"axios": "^1.6.0"
}
}