-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "spring-data-rest-and-reactjs",
"version": "0.1.0",
"description": "Demo of ReactJS + Spring Data REST",
"repository": {
"type": "git",
"url": "[email protected]: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": "^15.3.2",
"react-dom": "^15.3.2",
"rest": "^1.3.1",
"prop-types": "^15.5.0",
"underscore": "^1.8.3",
"classnames": "^2.2.5",
"webpack": "^1.12.6",
"babel-preset-stage-0": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-plugin-transform-runtime": "^6.15.0",
"baconjs": "^0.7.73",
"axios": "^0.16.1"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch -d",
"start": "webpack-dev-server --hot --inline"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.16.0",
"webpack-dev-server": "^1.12.1",
"copy-webpack-plugin": "^0.2.0",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-preset-es2016": "^6.16.0",
"babel-runtime": "^6.23.0",
"react-scripts": "0.9.5",
"react-addons-test-utils": "^15.4.2"
}
}