forked from neonevm/neon-faucet-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "neon-faucet-ui",
"version": "1.1.1",
"private": true,
"engines": {
"node": ">=16.14.0 && < 17.0.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "npm-run-all test:*",
"lint:code": "eslint 'src/**/*.{ts,tsx,js,jsx}' --ignore-path .gitignore .",
"lint:fix": "yarn lint:code --fix",
"test:types": "tsc",
"test:lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"test:audit": "snyk-protect",
"prepare": "husky install"
},
"dependencies": {
"@snyk/protect": "1.963.0",
"@web3-react/core": "6.1.9",
"@web3-react/injected-connector": "6.0.7",
"axios": "0.26.1",
"bowser": "2.11.0",
"include-media": "1.4.9",
"neon-portal": "1.3.4",
"npm-run-all": "4.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "npm:@tailwindcss/[email protected]",
"token-list": "https://github.com/neonlabsorg/token-list.git#v5.0.0",
"web3": "1.6.1"
},
"devDependencies": {
"@craco/craco": "6.4.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "13.5.0",
"@types/jest": "28.1.4",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "9.8.8",
"dotenv": "16.0.0",
"eslint-plugin-prettier": "4.2.1",
"http-proxy-middleware": "2.0.6",
"husky": ">=6",
"lint-staged": "^13.1.0",
"postcss": "7.0.39",
"prettier": "2.7.1",
"react-scripts": "4.0.3",
"sass": "1.50.0",
"style-loader": "3.3.1",
"typescript": "4.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"**/*.{js,ts,tsx,html,css}": [
"yarn lint:fix"
]
}
}