-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.22 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
{
"name": "hearthstone-vote",
"version": "1.0.0",
"description": "dev bundle requirements and webpack development server",
"main": "assets/js/index.js",
"scripts": {
"dev": "webpack-dev-server --content-base assets/bundles/ --port 8080 --hot --host 0.0.0.0",
"bundle": "./node_modules/.bin/webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dduric/hearthstone-vote.git"
},
"author": "Dalibor Duric",
"license": "MIT",
"bugs": {
"url": "https://github.com/dduric/hearthstone-vote/issues"
},
"homepage": "https://github.com/dduric/hearthstone-vote#readme",
"dependencies": {
"babel-loader": "^7.1.4",
"eslint": "^3.9.1",
"jquery": "^3.2.1",
"paper": "^0.11.5",
"react": "16.3.1",
"react-dom": "16.3.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.9.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"extends": [
"airbnb"
],
"globals": {
"window": true,
"document": true
},
"rules": {
"react/forbid-prop-types": "off",
"no-console": "off",
"no-param-reassign": "off",
"new-cap": "off",
"max-len": "off",
"space-before-function-paren": "off",
"prefer-arrow-callback": "off",
"func-names": "off",
"object-shorthand": "off",
"camelcase": "off",
"import/first": "off",
"import/extensions": "off",
"import/no-duplicates": "off",
"no-duplicate-imports": "off",
"import/no-extraneous-dependencies": "off",
"import/no-absolute-path": "off",
"no-restricted-syntax": "off",
"no-prototype-builtins": "off",
"no-undef-init": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"class-methods-use-this": "off"
}
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0"
}
}