-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.71 KB
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": "getfunds",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"lint": "npx eslint --cache src",
"lint:fix": "npx eslint --cache src --fix",
"prettier": "prettier ./src --cache --check",
"prettier:fix": "prettier ./src --cache --write"
},
"dependencies": {
"@portabletext/react": "^3.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/styled-components": "^5.1.0",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"eslint-config-next": "13.4.13",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"lucide-react": "^0.263.1",
"next": "13.4.13",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.2.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.5.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-plugin-next-on-pages": "^1.5.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2"
}
}