-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "platform-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest --config ./vitest.config.ts --run",
"gen": "graphql-codegen",
"test:watch": "vitest --config ./vitest.config.ts",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@oss-playground/split": "^2.0.0",
"@types/node": "20.2.3",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"graphql": "^16.6.0",
"next": "13.4.3",
"next-auth": "^4.22.1",
"next-seo": "^6.0.0",
"next-sitemap": "^4.1.3",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@storybook/addon-essentials": "^7.0.14",
"@storybook/addon-interactions": "^7.0.14",
"@storybook/addon-links": "^7.0.14",
"@storybook/blocks": "^7.0.14",
"@storybook/nextjs": "^7.0.14",
"@storybook/react": "^7.0.14",
"@storybook/testing-library": "^0.0.14-next.2",
"cypress": "^12.12.0",
"eslint-plugin-storybook": "^0.6.12",
"storybook": "^7.0.14",
"vitest": "^0.31.1"
}
}