forked from terra-money/faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.34 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
{
"name": "faucet-app",
"version": "0.7.5",
"private": true,
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"axios": "^0.21.1",
"bech32": "^1.1.3",
"classnames": "^2.2.6",
"formik": "^2",
"react": "^17",
"react-dom": "^17",
"react-google-recaptcha": "^2.1.0",
"react-router-dom": "^5",
"react-scripts": "^4",
"react-toastify": "^7",
"sass": "^1.32.12",
"typescript": "^4",
"yup": "^0.32"
},
"devDependencies": {
"@babel/core": "^7",
"babel-loader": "8.1.0",
"husky": "^4",
"lint-staged": "^10",
"prettier": "^2",
"regenerator-runtime": "^0.13",
"webpack": "4.44.2",
"webpack-cli": "^4.2.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 10",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true
}
}