-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "wallet-contact",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@choc-ui/chakra-autocomplete": "^4.20.1",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@testing-library/user-event": "^12.0.2",
"@types/firebase": "^3.2.1",
"@types/jest": "^25.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"ethers": "^5.6.1",
"firebase": "^9.6.9",
"framer-motion": "^4.0.0",
"husky": "^7.0.4",
"i18next": "^21.6.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^5.0.3",
"react-i18next": "^11.16.1",
"react-icons": "^4.3.1",
"react-scripts": "5.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^5.0.0",
"typescript": "^4.3.5",
"web-vitals": "^0.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"format": "npx prettier --write",
"tslint:fix": "npx tslint --fix -p tsconfig.json",
"eject": "react-scripts eject"
},
"prettier": {
"semi": true,
"printWidth": 120,
"singleQuote": true,
"endOfLine": "lf"
},
"lint-staged": {
"{,!(node_modules|dist|build|cypress)/**/}*.{ts,tsx}": [
"npm run tslint:fix",
"npm run format"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}