forked from neonevm/neon-faucet-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.22 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
{
"name": "neon-faucet-ui",
"version": "1.2.2",
"private": true,
"type": "module",
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"start": "vite",
"build": "vite 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"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@snyk/protect": "1.963.0",
"axios": "0.26.1",
"big.js": "^6.2.2",
"bowser": "2.11.0",
"ethers": "^6.13.5",
"include-media": "1.4.9",
"npm-run-all": "4.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass-loader": "^16.0.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@2.2.17",
"token-list": "https://github.com/neonlabsorg/token-list.git#v5.0.0",
"uuid": "^11.0.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "13.5.0",
"@types/jest": "^29.5.14",
"@types/node": "18.0.3",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "9.8.8",
"dotenv": "16.0.0",
"eslint-plugin-prettier": "4.2.1",
"http-proxy-middleware": "2.0.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.1",
"postcss": "7.0.39",
"prettier": "2.7.1",
"react-scripts": "4.0.3",
"sass": "1.50.0",
"style-loader": "3.3.1",
"ts-jest": "^29.2.5",
"typescript": "4.7.4",
"vite": "^6.0.7",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.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,css}": [
"yarn lint:fix"
]
},
"volta": {
"node": "20.14.0"
}
}