-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.06 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
70
71
72
73
74
75
76
77
{
"name": "multi-tenancy-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.2.2",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write '**/*.{ts,tsx}'",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@chakra-ui/react": "^2.0.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "4",
"apollo-server-micro": "^3.8.1",
"date-fns": "^2.28.0",
"framer-motion": "^6",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"graphql-scalars": "^1.17.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"nanoid": "^4.0.0",
"next": "latest",
"next-auth": "^4.3.1",
"nexus": "^1.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-feather": "^2.0.9",
"react-hook-form": "^7.29.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/graphql-iso-date": "^3.4.0",
"@types/micro-cors": "^0.1.2",
"@types/node": "17.0.23",
"@types/react": "18.0.1",
"@types/react-dom": "18.0.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"eslint-plugin-storybook": "^0.6.1",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"prisma": "4",
"storybook-addon-next": "^1.6.7",
"ts-node": "^10.8.0",
"typescript": "4.7.2"
},
"resolutons": {
"webpack": "^5"
}
}