-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.48 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.48 KB
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
{
"name": "inventoryexample",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development ./inventoryexample/frontend/src/index.js --output ./inventoryexample/frontend/static/frontend/main.js",
"build": "webpack --mode production ./inventoryexample/frontend/src/index.js --output ./inventoryexample/frontend/static/frontend/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yongyiw/InventoryExample.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yongyiw/InventoryExample/issues"
},
"homepage": "https://github.com/Yongyiw/InventoryExample#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"material-ui-icons": "^1.0.0-beta.36",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-alert": "^5.5.0",
"react-alert-template-basic": "^1.0.0",
"react-dom": "^16.8.6",
"react-material-ui-form-validator": "^2.0.8",
"react-redux": "^7.0.3",
"react-transition-group": "^4.0.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
}
}