forked from CannonFinance/faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "faucet",
"version": "0.1.12",
"private": true,
"homepage": "https://renproject.github.io/faucet",
"dependencies": {
"@types/crypto-js": "^4.0.1",
"@types/node": "^15.12.5",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-input-autosize": "^2.2.0",
"@types/react-select": "3.0.26",
"bignumber.js": "^9.0.1",
"crypto-js": "^4.0.0",
"emotion": "^11.0.0",
"immutable": "^4.0.0-rc.12",
"localforage": "^1.9.0",
"node-sass": "5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-input-autosize": "^3.0.0",
"react-scripts": "4.0.3",
"react-select": "3.1.1",
"send-crypto": "^0.2.29",
"typescript": "^4.3.4"
},
"devDependencies": {
"gh-pages": "^3.2.3",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "npm version patch && yarn build && gh-pages -d build",
"postinstall": "patch-package"
},
"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"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"endOfLine": "lf",
"arrowParens": "always"
}
}