This repository has been archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
101 lines (101 loc) · 2.75 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "React Boilerplate",
"scripts": {
"start": "node server.js",
"build": "NODE_ENV='production' webpack -p --config webpack.prod.conf.js",
"lint": "eslint ./src",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/juliancwirko/react-boilerplate.git"
},
"author": "Julian Ćwirko",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliancwirko/react-boilerplate/issues"
},
"homepage": "https://github.com/juliancwirko/react-boilerplate",
"dependencies": {
"classnames": "^2.2.5",
"history": "^4.5.1",
"prop-types": "^15.5.6",
"react": "^15.5.0",
"react-css-modules": "^4.1.0",
"react-dom": "^15.5.0",
"react-helmet": "^5.0.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.4",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"webpack": "^2.2.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"autoprefixer": "^6.7.6",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.0",
"enzyme": "^2.7.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"node-libs-browser": "^2.0.0",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.3",
"pre-commit": "^1.2.2",
"sass-loader": "^6.0.2",
"storybook-host": "^1.0.14",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.1"
},
"pre-commit": [
"lint"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"extends": [
"airbnb"
],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"rules": {
"react/jsx-filename-extension": "off",
"react/forbid-prop-types": "off",
"react/no-array-index-key": "off",
"react/no-danger": "off",
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/label-has-for": "off",
"import/no-extraneous-dependencies": "off"
}
}
}