-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
94 lines (94 loc) · 2.65 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
{
"name": "gnosis-auction-starter",
"version": "0.1.0",
"private": true,
"dependencies": {
"@gnosis.pm/safe-apps-react-sdk": "^4.0.6",
"@gnosis.pm/safe-apps-sdk": "^6.0.0",
"@gnosis.pm/safe-react-components": "^0.8.5",
"@material-ui/core": "^4.11.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.1.3",
"@typechain/ethers-v5": "^6.0.0",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.2",
"@types/react": "^17.0.0",
"@types/react-datepicker": "^3.1.5",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.2",
"ethers": "^5.5.1",
"ipfs-deploy": "^8.0.1",
"moment": "^2.29.1",
"react": "^17.0.1",
"react-app-rewired": "^2.1.6",
"react-datepicker": "^3.6.0",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.4",
"react-scripts": "^4.0.2",
"styled-components": "^5.1.1",
"typechain": "^4.0.2",
"typescript": "~4.1.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"ipfs-publish": "ipfs-deploy -p infura -O dist ./build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint:check": "eslint './src/**/*.{js,ts,tsx}'",
"lint:fix": "yarn lint:check --fix",
"prettier": "prettier './src/**/*.{js,ts,tsx}'",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write",
"generate-types": "typechain --target=ethers-v5 'abi/*.json' --outDir src/types",
"postinstall": "yarn generate-types",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty",
"pre-push": "yarn test --watchAll=false --passWithNoTests"
}
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:jsx-a11y/recommended"
],
"plugins": [
"jsx-a11y"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "./"
}