-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "short-url",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build && npm run prisma-dev-push",
"start": "next start",
"lint": "next lint",
"check-format": "prettier --check --ignore-path .gitignore .",
"format": "prettier --write --ignore-path .gitignore .",
"prisma-dev-push": "dotenv -e .env.local -- npx prisma db push",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "npm run cypress:open",
"test:headless": "npm run cypress:run",
"postinstall": "npm run prisma-dev-push"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"@next-auth/prisma-adapter": "^1.0.7",
"@vercel/analytics": "^1.0.2",
"autoprefixer": "10.4.14",
"next": "13.4.13",
"next-auth": "^4.22.4",
"notistack": "^3.0.1",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.32.4",
"tailwindcss": "3.3.3",
"uninstall": "^0.0.0"
},
"devDependencies": {
"@prisma/client": "^5.1.1",
"@testing-library/cypress": "^9.0.0",
"@types/node": "^20.4.8",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"cross-env": "^7.0.3",
"cypress": "^12.17.3",
"cypress-social-logins": "^1.14.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"prisma": "^5.1.1",
"typescript": "^5.1.6"
}
}