-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "spring-data-rest-and-reactjs",
"version": "0.1.0",
"description": "Demo of ReactJS + Spring Data REST",
"repository": {
"type": "git",
"url": "git@github.com:spring-guides/tut-react-and-spring-data-rest.git"
},
"keywords": [
"rest",
"hateoas",
"spring",
"data",
"react"
],
"author": "Greg L. Turnquist",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spring-guides/tut-react-and-spring-data-rest/issues"
},
"homepage": "https://github.com/spring-guides/tut-react-and-spring-data-rest",
"dependencies": {
"react": "^16.5.2",
"react-bootstrap": "^0.32.4",
"react-bootstrap-table-next": "^1.1.4",
"react-bootstrap-table2-paginator": "^1.0.2",
"react-bootstrap-table2-toolkit": "^1.0.3",
"react-dom": "^16.5.2",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"rest": "^2.0.0"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"test": "webpack -p --progress --config webpack.dev.js",
"build": "webpack -p --progress --config webpack.prod.js"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}