-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "portrait-frontend-assignment-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"type-check": "tsc --noEmit"
},
"engines": {
"node": "18.16.0"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@heroicons/react": "^2.0.18",
"@next/font": "^13.4.3",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"next": "^13.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^0.3.33",
"wagmi": "^1.0.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.1",
"@storybook/addon-actions": "^7.0.4",
"@storybook/addon-essentials": "^7.0.4",
"@storybook/addon-links": "^7.0.4",
"@storybook/client-api": "^7.0.4",
"@storybook/nextjs": "^7.0.4",
"@storybook/react": "^7.0.4",
"@types/node": "^17.0.32",
"@types/react": "^17",
"@types/react-dom": "^17",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "latest",
"eslint": "8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.11",
"lint-staged": "^13.1.0",
"postcss": "latest",
"postcss-import": "^14.1.0",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"storybook": "^7.0.4",
"storybook-addon-swc": "^1.1.9",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]"
}