-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.66 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
{
"description": "foo",
"name": "h1b_webapp",
"main": "index.jsx",
"scripts": {
"start": "node server.js",
"build": "cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.production.js",
"lint": "eslint --cache --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty . *.js",
"test": "karma start --single-run --no-auto-watch karma.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vasanthk/react-es6-webpack-boilerplate.git"
},
"keywords": [
"react",
"es6",
"babel",
"webpack"
],
"author": "Szhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/vasanthk/react-es6-webpack-boilerplate/issues"
},
"homepage": "https://github.com/vasanthk/react-es6-webpack-boilerplate",
"dependencies": {
"axios": "^0.5.1",
"babel-runtime": "^6.20.0",
"compact-json-loader": "^0.1.1",
"css-loader": "^0.26.4",
"lodash": "^4.17.4",
"query-string": "^4.3.4",
"react": "^15.4.1",
"react-bootstrap": "^0.30.8",
"react-bootstrap-table": "^3.1.0",
"react-bootstrap-typeahead": "^1.3.0",
"react-document-title": "^2.0.3",
"react-dom": "^15.4.1",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.1.1",
"style-loader": "^0.13.2"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.2",
"babel-istanbul-loader": "^0.1.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-compat": "^0.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.1",
"jquery": "^3.2.0",
"json-loader": "^0.5.4",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"loader-utils": "^1.1.0",
"react-transform-hmr": "^1.0.4",
"webpack": "^1.14.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^1.16.2"
}
}