forked from boxyhq/saas-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.65 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
{
"name": "next-saas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 4002",
"build": "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",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"playwright:update": "playwright install && playwright install-deps",
"test:e2e": "playwright test",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --env=jsdom"
},
"dependencies": {
"@heroicons/react": "2.0.17",
"@boxyhq/saml-jackson": "1.9.6",
"@hookform/resolvers": "2.9.11",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "4.11.0",
"@tailwindcss/typography": "0.5.9",
"axios": "1.3.4",
"babel-plugin-superjson-next": "0.4.5",
"bcryptjs": "2.4.3",
"classnames": "2.3.2",
"cookies-next": "2.1.1",
"formik": "2.2.9",
"moment": "2.29.4",
"next-auth": "4.20.1",
"next": "12.3.4",
"next-i18next": "13.2.2",
"next-transpile-modules": "9.1.0",
"nodemailer": "6.9.1",
"react": "18.2.0",
"react-daisyui": "2.5.0",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.0",
"react-icons": "4.8.0",
"superjson": "1.12.2",
"svix": "0.81.0",
"swr": "2.1.0",
"uuid": "8.3.2",
"yup": "0.32.11",
"zod": "3.21.4"
},
"devDependencies": {
"@playwright/test": "1.27.1",
"@tailwindcss/forms": "0.5.3",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/bcryptjs": "2.4.2",
"@types/jest": "29.2.3",
"@types/mocha": "10.0.1",
"@types/node": "18.14.2",
"@types/nodemailer": "6.4.6",
"@types/react": "18.0.25",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.57.0",
"eslint": "8.37.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-react": "7.32.2",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.4.1",
"lint-staged": "13.1.2",
"postcss": "8.4.21",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.2.1",
"prisma": "4.4.0",
"tailwindcss": "3.3.1",
"typescript": "4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}