forked from karelnagel/autopood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
59
{
"name": "spring-boot-react-js-fullstack",
"version": "1.0.0",
"description": "How to create a full stack application with Spring boot and React js, with web-pack and babel",
"main": "index.js",
"scripts": {
"watch": "webpack --watch -d --output ./target/classes/static/built/bundle.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nyakaz73/spring-boot-reactjs-fullstack.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nyakaz73/spring-boot-reactjs-fullstack/issues"
},
"homepage": "https://github.com/nyakaz73/spring-boot-reactjs-fullstack#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@testing-library/react": "^11.0.2",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"jest": "^26.4.2",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.20.0",
"lodash": "^4.17.20",
"pretty": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-form": "^8.3.6",
"redux-thunk": "^2.3.0",
"url-loader": "^4.1.1"
}
}