forked from duwancontacto/peronioLanding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hola-peronio",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@rainbow-me/rainbowkit": "^0.4.5",
"buffer": "^6.0.3",
"ethers": "^5.6.9",
"events": "^3.3.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-player": "^2.10.1",
"react-scroll": "^1.8.7",
"stream-browserify": "^3.0.0",
"util": "^0.12.4",
"wagmi": "^0.6.1",
"webpack": "^5.74.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-scroll": "^1.8.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"vite": "^3.0.0"
},
"eslintConfig": {
"env": {
"browser": false,
"es2021": true,
"mocha": true,
"node": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"standard",
"plugin:prettier/recommended",
"plugin:@next/next/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"node/no-unsupported-features/es-syntax": [
"error",
{
"ignores": [
"modules"
]
}
],
"no-unused-vars": "warn",
"node/no-missing-import": [
"error",
{
"allowModules": [],
"resolvePaths": [
"./",
"../"
],
"tryExtensions": [
".js",
".ts",
".json",
".node"
]
}
]
}
},
"eslintIgnore": [
"artifacts",
"cache"
],
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "all"
}
}