-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-simple-boilerplate",
"version": "1.0.0",
"description": "Simple and lightweight Boilerplate for ReactJS projects",
"scripts": {
"lint": "eslint src",
"start": "node server.js",
"build": "webpack --config webpack.prod.js"
},
"repository": "https://github.com/noahlotzer/react-simple-boilerplate.git",
"keywords": [
"react",
"reactjs",
"boilerplate",
"reload",
"live",
"edit",
"webpack"
],
"author": "Noah-Jerome Lotzer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/noahlotzer/react-simple-boilerplate/issues"
},
"homepage": "https://github.com/noahlotzer/react-simple-boilerplate",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-import": "^1.6.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"node-sass": "^4.5.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.4.4"
},
"dependencies": {
"@blueprintjs/core": "^1.35.0",
"@blueprintjs/datetime": "^1.25.1",
"@types/es6-shim": "^0.31.35",
"@types/moment": "^2.13.0",
"@types/pure-render-decorator": "^0.2.28",
"@types/react": "^16.0.34",
"@types/react-addons-css-transition-group": "^15.0.3",
"@types/react-dom": "^16.0.3",
"antd": "^3.1.3",
"babel-loader": "^7.0.0",
"classnames": "^2.2.5",
"file-loader": "^1.1.5",
"lodash": "^4.17.4",
"material-ui": "^1.0.0-beta.23",
"material-ui-stable": "^0.19.5",
"moment": "^2.20.1",
"rc-datepicker": "^5.0.10",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-shallow-compare": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-bootstrap-toggle": "^2.2.5",
"react-dates": "^16.0.2",
"react-dom": "^16.2.0",
"react-input-range": "^1.3.0",
"react-mdl": "^1.10.3",
"react-mdl-extra": "^1.5.0",
"react-mdl-select": "^1.1.5",
"react-mdl-selectfield": "^0.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-form": "^7.1.2",
"redux-logger": "^3.0.6",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.76.0"
},
"main": "server.js"
}