generated from yusufferdogan/STARKNET-REACT-BOILERPLATE
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "starknet-react-boilerplate",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@argent/get-starknet": "^6.4.6",
"@heroicons/react": "^2.0.13",
"@nextui-org/react": "latest",
"@reduxjs/toolkit": "^1.9.5",
"@starknet-react/core": "^0.16.0",
"api": "^6.1.0",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"dotenv": "^16.3.1",
"get-starknet": "^2.0.0",
"next": "^12.1.6",
"next-themes": "^0.2.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.8.0",
"react-modal": "^3.16.1",
"react-redux": "^8.1.0",
"react-toastify": "^9.1.2",
"starknet": "^5.12.0",
"swr": "^2.1.5"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"autoprefixer": "^10.4.7",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"ethers": "^5.6.9",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"next/core-web-vitals",
"plugin:@typescript-eslint/strict",
"plugin:jsx-a11y/recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:tailwindcss/recommended"
]
}
}