-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.24 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
{
"name": "next-js-prisma-meetup",
"version": "0.1.0",
"private": true,
"scripts": {
"build-storybook": "build-storybook",
"build": "next build",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "next dev",
"g:component": "hygen component new --name",
"g:page": "hygen page new --name",
"g:test:component": "hygen test component --name",
"lint": "next lint",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test:ci": "jest --ci",
"test": "jest --watch",
"types:watch": "tsc --noEmit --watch",
"types": "tsc --noEmit"
},
"dependencies": {
"@chakra-ui/react": "^2.2.4",
"@emoji-mart/data": "^1.0.3",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.15.1",
"@sentry/nextjs": "^7.9.0",
"@tanstack/react-query": "^4.0.10",
"@tanstack/react-query-devtools": "^4.0.10",
"@testing-library/react": "^13.3.0",
"ably": "^1.2.27",
"dayjs": "^1.11.4",
"emoji-mart": "^5.2.0",
"framer-motion": "^7.0.0",
"next": "^12.2.4",
"next-auth": "^4.10.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@chakra-ui/storybook-addon": "^4.0.4",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-controls": "^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",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.2.1",
"@types/emoji-mart": "^3.0.9",
"@types/react": "^18.0.12",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.1",
"hygen": "^6.2.7",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.7.0",
"prisma": "^3.15.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.3"
}
}