-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "src",
"version": "1.0.0",
"description": "This app tests the integration of Django REST Framework with a React front end.",
"main": "index.js",
"scripts": {
"flush": "python ./manage.py flush --no-input",
"e2e": "cypress open --project ./frontend/",
"dev": "webpack --mode development ./frontend/src/index.js --output ./frontend/static/frontend/main.js",
"build": "webpack --mode production ./frontend/src/index.js --output ./frontend/static/frontend/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckz8780/drf_react.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ckz8780/drf_react/issues"
},
"homepage": "https://github.com/ckz8780/drf_react#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cypress": "^3.0.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"weak-key": "^1.0.0",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8"
},
"dependencies": {}
}