-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
81 lines (81 loc) · 2.51 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
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "Boilerplate for React apps",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --open",
"build": "webpack --config ./webpack.production.config.js --progress --profile --colors",
"precommit": "lint-staged",
"format": "prettier --write \"app/**/*.{js,jsx,json,css,scss}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hereisnaman/react-starter-kit.git"
},
"author": "hereisnaman",
"license": "MIT",
"bugs": {
"url": "https://github.com/hereisnaman/react-starter-kit/issues"
},
"homepage": "https://github.com/hereisnaman/react-starter-kit#readme",
"dependencies": {
"apollo-fetch": "^0.7.0",
"chart.js": "^2.7.2",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.1",
"dotenv-webpack": "^1.5.5",
"graphql-request": "^1.5.2",
"html2canvas": "^1.0.0-alpha.12",
"react": "^16.3.2",
"react-addons-css-transition-group": "^15.6.2",
"react-bootstrap": "^0.32.1",
"react-chartjs-2": "^2.7.2",
"react-dom": "^16.3.2",
"react-ga": "^2.5.0",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-cli": "^1.1.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"image-webpack-loader": "^4.2.0",
"lint-staged": "^7.0.5",
"node-sass": "^4.9.0",
"prettier": "^1.12.1",
"react-hot-loader": "^4.1.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.7.0",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^3.1.4"
}
}