-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
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
{
"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": "./node_modules/.bin/rimraf dist",
"build:webpack": "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": "./node_modules/.bin/gulp"
},
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "CC0-1.0",
"homepage": "https://github.com/gaearon/react-transform-boilerplate",
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "^6.5.2",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.3.0",
"chai-enzyme": "^0.4.2",
"css-loader": "^0.23.1",
"cssnano": "^3.3.1",
"enzyme": "^2.3.0",
"eslint": "^2.10.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.0",
"gulp-mocha": "^2.1.3",
"happypack": "^2.1.1",
"lodash": "^4.6.1",
"postcss-css-variables": "^0.5.0",
"postcss-each": "^0.9.1",
"postcss-for": "^2.0.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-nested": "^1.0.0",
"proxyquire": "^1.7.3",
"react-addons-test-utils": "15.0.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"sinon-promise": "^0.1.3",
"style-loader": "^0.13.0",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0",
"webpack-livereload-plugin": "^0.8.1"
},
"dependencies": {
"alt": "^0.18.4",
"classnames": "^2.2.3",
"d3-react": "^1.0.4",
"formsy-react": "^0.18.0",
"formsy-react-components": "^0.7.1",
"gulp-localeapp": "^1.2.0",
"history": "^2.1.1",
"json-loader": "^0.5.4",
"marked": "^0.3.5",
"postcss": "^5.0.14",
"postcss-custom-media": "^5.0.1",
"q": "^1.4.1",
"react": "15.0.1",
"react-addons-shallow-compare": "15.0.1",
"react-css-modules": "^3.6.0",
"react-d3": "^0.4.0",
"react-dom": "15.0.1",
"react-markdown-to-html": "^1.0.11",
"react-router": "^2.4.1",
"react-router-scroll": "^0.2.0",
"react-tap-event-plugin": "^1.0.0",
"react-vis": "^0.3.4",
"superagent": "^2.0.0-alpha.3",
"transfer-webpack-plugin": "^0.1.4"
}
}