-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.65 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.65 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
107
{
"name": "react-pages-boilerplate",
"version": "1.0.0",
"description": "Simple boilerplate for working with React, redux, react-router and Github Pages",
"main": "index.js",
"scripts": {
"test": "tape --require babel-register --require ignore-styles src/**/*.test.{js,jsx} | tap-spec",
"start": "cross-env NODE_ENV=development node scripts/start",
"build": "npm run clean && cross-env NODE_ENV=production webpack --progress --colors",
"deploy": "cross-env NODE_ENV=production BUILD=pages node scripts/deploy",
"clean": "rimraf public",
"clean:git": "node scripts/clean-git",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint src --ext .js --ext .jsx --cache || true",
"lint:scss": "stylelint 'src/**/*.scss' --cache --fix || true",
"storybook": "start-storybook -p 9001 -c storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtivital/react-pages-boilerplate.git"
},
"author": "Vitaly Rtishchev <rtivital@gmail.com> (http://github.com/rtivital)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rtivital/react-pages-boilerplate/issues"
},
"homepage": "https://github.com/rtivital/react-pages-boilerplate#readme",
"dependencies": {
"axios": "^0.17.1",
"classnames": "^2.2.5",
"enzyme-adapter-react-16": "^1.1.0",
"google-maps-react": "^1.1.2",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"material-ui": "^0.19.4",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-google-login": "^3.0.2",
"react-icons": "^2.2.7",
"react-loader-advanced": "^1.7.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-axios-middleware": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@storybook/react": "^3.2.16",
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-ramda": "^1.4.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^1.1.5",
"gh-pages": "^1.1.0",
"git-repo-name": "^0.6.0",
"html-webpack-plugin": "^2.30.1",
"ignore-styles": "^5.0.1",
"lodash-webpack-plugin": "^0.11.4",
"node-sass": "^4.7.2",
"open-browser-webpack-plugin": "^0.0.5",
"postcss": "^6.0.14",
"postcss-loader": "^2.0.9",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.1",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tape-catch": "^1.0.6",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"yesno": "0.0.1"
}
}