-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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": "polymarket-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "yarn format:fix && yarn lint --fix",
"format": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,json}' --config .prettierrc",
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config .prettierrc"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"@azuro-org/dictionaries": "^3.0.16",
"@azuro-org/sdk": "^5.2.9",
"@rainbow-me/rainbowkit": "^2.1.2",
"@tanstack/react-query": "^5.51.24",
"clsx": "^2.1.1",
"cryptocurrency-icons": "^0.18.1",
"dayjs": "^1.11.11",
"graphql": "^16.8.1",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-modal": "^3.16.1",
"react-select": "^5.8.0",
"sharp": "^0.33.5",
"stylelint-config-tailwindcss": "^0.0.7",
"viem": "^2.13.7",
"wagmi": "^2.9.9"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.1",
"typescript": "5.4"
}
}