-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "track-adblock",
"private": true,
"repository": "https://github.com/NiedziolkaMichal/track-adblock",
"license": "CC BY-NC-ND 4.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"lint": "next lint",
"prettier": "prettier -w **",
"prepare": "husky install",
"deploy": "vercel --force --prod"
},
"prisma": {
"schema": "src/lib/db/schema.prisma"
},
"lint-staged": {
"*": "prettier -w",
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@nivo/core": "^0.80.0",
"@nivo/line": "^0.80.0",
"@prisma/client": "^4.11.0",
"@sentry/nextjs": "^7.45.0",
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"is-valid-domain": "^0.1.6",
"nanoid": "^4.0.2",
"next": "^13.2.4",
"next-auth": "^4.20.1",
"nodemailer": "^6.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"request-ip": "^3.3.0",
"styled-components": "^5.3.9",
"swr": "^2.1.1",
"typescript": "^5.0.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.15.9",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@types/request-ip": "^0.0.37",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"prisma": "^4.11.0"
}
}