-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "newfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"cypress": "cypress open",
"cypress:install": "cypress install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"postinstall": "prisma generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.4",
"@next/bundle-analyzer": "^12.3.1",
"@prisma/client": "^4.4.0",
"@svgr/webpack": "^6.4.0",
"@trpc/client": "^9.27.4",
"@trpc/next": "^9.27.4",
"@trpc/react": "^9.27.4",
"@trpc/server": "^9.27.4",
"clsx": "^1.2.1",
"contentlayer": "^0.2.8",
"date-fns": "^2.29.3",
"next": "12.3.1",
"next-auth": "^4.12.2",
"next-compose-plugins": "^2.2.1",
"next-contentlayer": "^0.2.8",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"next-translate": "^1.6.0",
"plaiceholder": "^2.5.0",
"prisma": "^4.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-query": "^3.39.2",
"sass": "^1.55.0",
"superjson": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.0.3",
"@types/node": "18.7.23",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.39.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"cypress": "^10.9.0",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"require-from-string": "^2.0.2",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.8.4",
"webpack": "^5.74.0",
"zod": "^3.19.1"
}
}