forked from boxyhq/saas-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 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
101
{
"name": "saas-starter-kit",
"version": "1.4.5",
"private": true,
"prisma": {
"seed": "ts-node ./prisma/seed.ts"
},
"scripts": {
"release": "git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main",
"dev": "next dev --port 4002",
"build": "prisma generate && prisma db push && next build",
"start": "next start --port 4002",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"check-unused": "npx knip",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"playwright:update": "playwright install && playwright install-deps",
"test:e2e": "playwright test",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --env=jsdom",
"build-ci": "next build",
"sync-stripe": "node --env-file .env sync-stripe.js",
"check-locale": "node check-locale.js",
"delete-team": "node --env-file .env delete-team.js"
},
"dependencies": {
"@boxyhq/metrics": "0.2.7",
"@boxyhq/react-ui": "3.3.43",
"@boxyhq/saml-jackson": "1.25.1",
"@heroicons/react": "2.1.3",
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.14.0",
"@react-email/components": "0.0.18",
"@react-email/render": "0.0.14",
"@retracedhq/logs-viewer": "2.7.4",
"@retracedhq/retraced": "0.7.12",
"@sentry/nextjs": "8.3.0",
"@tailwindcss/typography": "0.5.13",
"bcryptjs": "2.4.3",
"classnames": "2.5.1",
"cookies-next": "4.2.1",
"currency-symbol-map": "5.1.0",
"formik": "2.4.6",
"i18next": "23.11.5",
"micromatch": "4.0.7",
"mixpanel-browser": "2.50.0",
"next": "14.2.3",
"next-auth": "4.24.7",
"next-i18next": "15.3.0",
"nodemailer": "6.9.13",
"react": "18.3.1",
"react-daisyui": "5.0.0",
"react-dom": "18.3.1",
"react-email": "2.1.3",
"react-google-recaptcha": "3.1.0",
"react-hot-toast": "2.4.1",
"react-i18next": "14.1.2",
"sharp": "0.33.4",
"slack-notify": "2.0.7",
"stripe": "15.7.0",
"svix": "1.24.0",
"swr": "2.2.5",
"yup": "1.4.0",
"zod": "3.23.8"
},
"devDependencies": {
"@faker-js/faker": "8.4.1",
"@playwright/test": "1.44.1",
"@testing-library/jest-dom": "6.4.5",
"@types/bcryptjs": "2.4.6",
"@types/jest": "29.5.12",
"@types/micromatch": "4.0.7",
"@types/mixpanel-browser": "2.49.0",
"@types/node": "20.12.12",
"@types/nodemailer": "6.4.15",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"autoprefixer": "10.4.19",
"daisyui": "4.11.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-i18next": "6.0.3",
"eslint-plugin-react": "7.34.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"prisma": "5.14.0",
"release-it": "17.3.0",
"tailwindcss": "3.4.3",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"overrides": {}
}