-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 4.34 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
101
102
103
104
105
106
107
108
109
{
"name": "qwerky-studio",
"version": "0.1.1",
"private": true,
"scripts": {
"devold": "next dev",
"dev": "cross-env NODE_OPTIONS='--inspect' && dotenv -e .env.development -- next dev",
"build:dev": "dotenv -e .env.development -- next build",
"build": "next build",
"cibuild": "dotenv -e .env.development next build",
"start": "dotenv -e .env.production next start",
"lint": "npx eslint ./src/**/*.ts* --fix && npm run prettify",
"lint:fix": "npx eslint ./src/**/*.ts* --fix && npm run prettify",
"prettify": "npx prettier -w --config ./prettier.config.js .",
"bootstrap": "npm ci && cp -n ./dev.config.js.template ./dev.config.js; cp -n ./.env.development.template ./.env.development; true",
"setup": "npm run bootstrap && npm run db:dev:reset",
"update": "rm -rf ./node_modules && npm run bootstrap && npm run db:dev:migrate ",
"server": "dotenv -e .env.production npm start",
"db:dev:migrate": "npx dotenv -e ./.env.development -- npx prisma migrate dev",
"db:prod:migrate": "npx dotenv -e ./.env -- npx prisma migrate deploy",
"db:dev:reset": "npx dotenv -e ./.env.development -- npx prisma migrate reset",
"db:dev:refresh": "npm run db:dev:reset && npm run db:dev:migrate",
"delete_node_modules": "npm i -g rimraf && rimraf node_modules",
"dev-setup": "npm run delete_node_modules && npm i && docker compose up --build -d && npm i -D dotenv && npm run db:dev:refresh"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.17",
"@mantine/carousel": "^6.0.7",
"@mantine/core": "^6.0.7",
"@mantine/dates": "^6.0.7",
"@mantine/dropzone": "^6.0.7",
"@mantine/form": "^6.0.7",
"@mantine/hooks": "^6.0.7",
"@mantine/next": "^6.0.7",
"@mantine/notifications": "^6.0.7",
"@mantine/prism": "^6.0.7",
"@mantine/tiptap": "^6.0.7",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.3.0",
"@prisma/client": "^4.12.0",
"@stripe/stripe-js": "^1.52.1",
"@tabler/icons-react": "^2.16.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@tiptap/extension-link": "^2.0.2",
"@tiptap/react": "^2.0.2",
"@tiptap/starter-kit": "^2.0.2",
"@types/bcryptjs": "^2.4.2",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.14",
"aws-sdk": "^2.1359.0",
"axios": "^1.3.5",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"dayjs": "^1.11.7",
"embla-carousel-react": "^7.1.0",
"eslint-config-next": "13.3.0",
"focus-visible": "^5.2.0",
"next": "^13.2.4",
"next-auth": "^4.18.10",
"next-s3-upload": "^0.3.0",
"nextjs-backend-helpers": "^0.0.18-9",
"openai": "^3.2.1",
"postcss-focus-visible": "^8.0.2",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-medium-image-zoom": "^5.1.3",
"react-multi-select-component": "^4.3.4",
"react-query": "^3.39.3",
"sharp": "^0.32.1",
"stripe": "^12.0.0",
"tailwindcss": "^3.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cookies": "^0.7.7",
"@types/stripe": "^8.0.417",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.38.0",
"eslint-config-next": "13.3.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"jose": "^4.13.1",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.12.0",
"readline-sync": "^1.4.10",
"rimraf": "^5.0.0",
"tailwindcss": "^3.3.1",
"typescript": "5.0.4",
"uuid": "^9.0.0"
}
}