-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·80 lines (80 loc) · 2.14 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
{
"name": "demo-matinale",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.4.3",
"babel-eslint": "9.0.0",
"ethereumjs-testrpc": "^6.0.3",
"moment": "^2.22.2",
"openzeppelin-solidity": "1.10.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4",
"rxjs": "^6.2.2",
"solc": "^0.5.0",
"truffle": "^5.0.5",
"web3": "^0.20.1"
},
"devDependencies": {
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-react-app": "^3.0.6",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint src",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "rm -rf ./src/contracts && truffle deploy --reset --contracts_build_directory=./src/contracts"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb"
],
"rules": {
"semi": [
2,
"never"
],
"react/destructuring-assignment": [
true,
"always",
{
"ignoreClassFields": true
}
],
"jsx-a11y/label-has-associated-control": "off",
"react/prop-types": "off",
"implicit-arrow-linebreak": "off",
"jsx-a11y/click-events-have-key-events": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"react/jsx-filename-extension": "off",
"react/forbid-prop-types": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/label-has-for": "off",
"jsx-a11y/anchor-is-valid": [
"warn",
{
"aspects": [
"invalidHref"
]
}
],
"react/require-default-props": "off",
"no-unused-vars": "warn"
}
}
}