-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.21 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.21 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-transform-boilerplate",
"version": "1.0.0",
"description": "A new Webpack boilerplate with hot reloading React components, and error handling on module and component level.",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint src",
"test": "mocha test/setup.js --recursive src/*.test.js src/**/*.test.js src/**/**/*.test.js",
"test:watch": "mocha -w test/setup.js -G --recursive src/*.test.js src/**/*.test.js src/**/**/*.test.js"
},
"node": "v6.9",
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-transform-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel",
"react-transform"
],
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/gaearon/react-transform-boilerplate/issues"
},
"homepage": "https://github.com/gaearon/react-transform-boilerplate",
"devDependencies": {
"babel-core": "6.22.1",
"babel-eslint": "^7.2.3",
"babel-loader": "6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"babel-root-import": "^4.1.5",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"chai-spies": "^0.7.1",
"cheerio": "0.22.x",
"cross-env": "1.0.8",
"css-loader": "^0.25.0",
"deep-freeze-node": "^1.1.2",
"enzyme": "^2.5.1",
"eslint-plugin-babel": "3.3.0",
"eventsource-polyfill": "0.9.6",
"exports-loader": "^0.6.3",
"express": "^4.13.3",
"file-loader": "^0.9.0",
"ignore-styles": "^5.0.1",
"imports-loader": "^0.6.5",
"jsdom": "^9.8.0",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"mocha-eslint": "^3.0.1",
"node-sass": "^3.10.1",
"react-addons-test-utils": "^15.3.2",
"rimraf": "^2.4.3",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"watchify": "^3.7.0",
"webpack": "1.13.1",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.12.1"
},
"dependencies": {
"axios": "^0.16.1",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.23.0",
"breakpoint-sass": "^2.7.1",
"classnames": "^2.2.5",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-prettier": "^2.1.1",
"eslint-plugin-react": "^7.0.1",
"jquery": "^3.0.0",
"lodash": "^4.13.1",
"material-ui": "^0.17.0",
"normalize.css": "^5.0.0",
"prettier": "1.31.1",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-dom": "^15.2.0",
"react-media": "^1.5.1",
"react-redux": "^5.0.3",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-form": "^6.6.2",
"redux-thunk": "^2.2.0"
}
}