forked from boxyhq/saas-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.14 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
{
"name": "saas-starter-kit",
"version": "1.3.4",
"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 syncStripe.js",
"check-locale": "node check-locale.js"
},
"dependencies": {
"@boxyhq/metrics": "0.2.6",
"@boxyhq/react-ui": "3.3.39",
"@boxyhq/saml-jackson": "1.21.1",
"@heroicons/react": "2.1.1",
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.11.0",
"@react-email/components": "0.0.15",
"@react-email/render": "0.0.12",
"@retracedhq/logs-viewer": "2.7.1",
"@retracedhq/retraced": "0.7.7",
"@sentry/nextjs": "7.106.1",
"@tailwindcss/typography": "0.5.10",
"bcryptjs": "2.4.3",
"classnames": "2.5.1",
"cookies-next": "4.1.1",
"currency-symbol-map": "5.1.0",
"formik": "2.4.5",
"i18next": "22.5.1",
"micromatch": "4.0.5",
"mixpanel-browser": "2.49.0",
"next": "14.1.3",
"next-auth": "4.24.7",
"next-i18next": "13.3.0",
"nodemailer": "6.9.12",
"react": "18.2.0",
"react-daisyui": "5.0.0",
"react-dom": "18.2.0",
"react-email": "2.1.0",
"react-google-recaptcha": "3.1.0",
"react-hot-toast": "2.4.1",
"react-i18next": "12.3.1",
"sharp": "0.33.2",
"slack-notify": "2.0.7",
"stripe": "14.20.0",
"svix": "1.21.0",
"swr": "2.2.5",
"yup": "1.4.0",
"zod": "3.22.4"
},
"devDependencies": {
"@faker-js/faker": "8.4.1",
"@playwright/test": "1.42.1",
"@testing-library/jest-dom": "6.4.2",
"@types/bcryptjs": "2.4.6",
"@types/jest": "29.5.12",
"@types/micromatch": "4.0.6",
"@types/mixpanel-browser": "2.49.0",
"@types/node": "20.11.27",
"@types/nodemailer": "6.4.14",
"@types/react": "18.2.65",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"autoprefixer": "10.4.18",
"daisyui": "4.7.3",
"eslint": "8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-i18next": "6.0.3",
"eslint-plugin-react": "7.34.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.12",
"prisma": "5.11.0",
"release-it": "17.1.1",
"tailwindcss": "3.4.1",
"typescript": "5.4.2"
}
}