-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.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
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": "naimless",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src/**",
"cypress:open": "cypress open",
"cy:run": "cypress run",
"test": "jest --watch",
"ts-node": "ts-node --compiler-options '{\"module\":\"CommonJS\"}'",
"db:seed": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' -r tsconfig-paths/register",
"storybook": "start-storybook -p 6006 -s . && ./src",
"build-storybook": "build-storybook"
},
"dependencies": {
"@headlessui/react": "^1.6.0",
"@hookform/resolvers": "^2.9.7",
"@popperjs/core": "^2.11.5",
"@prisma/client": "3.12.0",
"@replayio/replay": "^0.9.4",
"@testing-library/react": "^13.4.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cloudinary": "^1.30.0",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"cypress": "^9.6.1",
"date-fns": "^2.28.0",
"framer-motion": "^6.3.2",
"jsonwebtoken": "^8.5.1",
"next": "12.1.4",
"polished": "^4.2.2",
"prettier": "^2.6.2",
"prisma": "^3.12.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-gravatar": "^2.6.3",
"react-hook-form": "^7.34.2",
"react-popper": "^2.3.0",
"react-query": "^3.39.1",
"react-transition-group": "^4.4.5",
"styled-components": "^5.3.5",
"zod": "^3.18.0"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@faker-js/faker": "^7.1.0",
"@replayio/cypress": "^0.2.16",
"@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/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/node": "17.0.23",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/react-gravatar": "^2.6.10",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.5",
"cypress-log-to-output": "^1.1.2",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^7.0.4",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.6.3"
}
}