2021-03-10 10:02:39 +00:00
|
|
|
{
|
|
|
|
"name": "calendso",
|
2021-09-15 14:49:52 +00:00
|
|
|
"version": "1.0.0",
|
2021-03-10 10:02:39 +00:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-09-29 14:36:58 +00:00
|
|
|
"analyze": "ANALYZE=true next build",
|
|
|
|
"analyze:server": "BUNDLE_ANALYZE=server next build",
|
|
|
|
"analyze:browser": "BUNDLE_ANALYZE=browser next build",
|
2021-03-10 10:02:39 +00:00
|
|
|
"dev": "next dev",
|
2021-10-05 10:05:48 +00:00
|
|
|
"db-up": "docker compose up -d",
|
2021-09-02 15:20:36 +00:00
|
|
|
"db-migrate": "yarn prisma migrate dev",
|
|
|
|
"db-seed": "yarn ts-node scripts/seed.ts",
|
2021-10-05 10:05:48 +00:00
|
|
|
"db-nuke": "docker compose down --volumes --remove-orphans",
|
|
|
|
"dx": "cross-env BASE_URL=http://localhost:3000 JWT_SECRET=secret DATABASE_URL=postgresql://postgres:@localhost:5450/calendso run-s db-up db-migrate db-seed dev",
|
2021-10-07 15:07:57 +00:00
|
|
|
"test": "jest",
|
|
|
|
"test-playwright": "jest --maxWorkers=2 --config jest.playwright.config.js && nyc report --reporter=lcov",
|
2021-03-10 10:02:39 +00:00
|
|
|
"build": "next build",
|
2021-04-13 20:56:49 +00:00
|
|
|
"start": "next start",
|
2021-09-02 15:20:36 +00:00
|
|
|
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
|
2021-06-21 17:34:01 +00:00
|
|
|
"postinstall": "prisma generate",
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
|
|
|
|
"prepare": "husky install"
|
2021-03-10 10:02:39 +00:00
|
|
|
},
|
2021-08-22 14:10:28 +00:00
|
|
|
"engines": {
|
2021-09-29 09:41:38 +00:00
|
|
|
"node": "14.x",
|
|
|
|
"yarn": ">=1.19.0 < 2.0.0"
|
2021-08-22 14:10:28 +00:00
|
|
|
},
|
2021-03-10 10:02:39 +00:00
|
|
|
"dependencies": {
|
2021-09-06 15:11:37 +00:00
|
|
|
"@headlessui/react": "^1.4.1",
|
2021-08-18 13:10:04 +00:00
|
|
|
"@heroicons/react": "^1.0.4",
|
2021-09-30 21:37:52 +00:00
|
|
|
"@hookform/resolvers": "^2.8.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@jitsu/sdk-js": "^2.2.4",
|
2021-09-02 15:20:36 +00:00
|
|
|
"@prisma/client": "^2.30.2",
|
2021-09-15 12:33:00 +00:00
|
|
|
"@radix-ui/react-avatar": "^0.1.0",
|
|
|
|
"@radix-ui/react-collapsible": "^0.1.0",
|
|
|
|
"@radix-ui/react-dialog": "^0.1.0",
|
|
|
|
"@radix-ui/react-dropdown-menu": "^0.1.0",
|
2021-09-26 21:55:27 +00:00
|
|
|
"@radix-ui/react-id": "^0.1.0",
|
2021-09-15 12:33:00 +00:00
|
|
|
"@radix-ui/react-slider": "^0.1.0",
|
|
|
|
"@radix-ui/react-switch": "^0.1.0",
|
2021-09-14 08:20:24 +00:00
|
|
|
"@radix-ui/react-tooltip": "^0.1.0",
|
2021-09-22 18:36:13 +00:00
|
|
|
"@stripe/react-stripe-js": "^1.4.1",
|
|
|
|
"@stripe/stripe-js": "^1.16.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@tailwindcss/forms": "^0.3.3",
|
2021-10-05 16:37:06 +00:00
|
|
|
"@trpc/client": "^9.9.1",
|
|
|
|
"@trpc/next": "^9.9.1",
|
|
|
|
"@trpc/react": "^9.9.1",
|
|
|
|
"@trpc/server": "^9.9.1",
|
2021-09-22 18:36:13 +00:00
|
|
|
"@types/stripe": "^8.0.417",
|
2021-09-27 21:12:55 +00:00
|
|
|
"@wojtekmaj/react-daterange-picker": "^3.3.1",
|
2021-09-23 08:49:17 +00:00
|
|
|
"accept-language-parser": "^1.5.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"async": "^3.2.1",
|
2021-03-24 15:03:04 +00:00
|
|
|
"bcryptjs": "^2.4.3",
|
2021-07-15 14:10:26 +00:00
|
|
|
"classnames": "^2.3.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"dayjs": "^1.10.6",
|
2021-07-15 14:10:26 +00:00
|
|
|
"dayjs-business-days": "^1.0.4",
|
2021-08-18 08:08:33 +00:00
|
|
|
"googleapis": "^84.0.0",
|
2021-06-23 21:11:38 +00:00
|
|
|
"handlebars": "^4.7.7",
|
2021-08-15 01:53:59 +00:00
|
|
|
"ical.js": "^1.4.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"ics": "^2.31.0",
|
2021-09-30 20:37:29 +00:00
|
|
|
"jimp": "^0.16.1",
|
2021-06-24 15:59:11 +00:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2021-06-21 23:15:29 +00:00
|
|
|
"lodash.merge": "^4.6.2",
|
2021-07-15 14:10:26 +00:00
|
|
|
"lodash.throttle": "^4.1.1",
|
2021-09-22 18:36:13 +00:00
|
|
|
"micro": "^9.3.4",
|
2021-09-01 21:36:56 +00:00
|
|
|
"next": "^11.1.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"next-auth": "^3.28.0",
|
2021-09-23 08:49:17 +00:00
|
|
|
"next-i18next": "^8.8.0",
|
2021-08-27 12:35:20 +00:00
|
|
|
"next-seo": "^4.26.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"next-transpile-modules": "^8.0.0",
|
|
|
|
"nodemailer": "^6.6.3",
|
2021-09-21 09:29:20 +00:00
|
|
|
"otplib": "^12.0.1",
|
|
|
|
"qrcode": "^1.4.4",
|
2021-08-18 08:08:33 +00:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2021-08-12 04:44:11 +00:00
|
|
|
"react-easy-crop": "^3.5.2",
|
2021-09-30 21:37:52 +00:00
|
|
|
"react-hook-form": "^7.16.1",
|
2021-08-18 08:18:18 +00:00
|
|
|
"react-hot-toast": "^2.1.0",
|
2021-09-22 18:36:13 +00:00
|
|
|
"react-intl": "^5.20.7",
|
2021-08-04 10:39:43 +00:00
|
|
|
"react-multi-email": "^0.5.3",
|
2021-08-18 08:08:33 +00:00
|
|
|
"react-phone-number-input": "^3.1.25",
|
2021-09-27 14:47:55 +00:00
|
|
|
"react-query": "^3.23.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"react-select": "^4.3.1",
|
2021-08-18 13:35:31 +00:00
|
|
|
"react-timezone-select": "^1.0.7",
|
2021-09-24 20:02:03 +00:00
|
|
|
"react-use-intercom": "1.4.0",
|
2021-06-09 22:51:09 +00:00
|
|
|
"short-uuid": "^4.2.0",
|
2021-09-22 18:36:13 +00:00
|
|
|
"stripe": "^8.168.0",
|
2021-09-18 16:49:18 +00:00
|
|
|
"tsdav": "1.0.6",
|
2021-08-18 08:08:33 +00:00
|
|
|
"tslog": "^3.2.1",
|
2021-09-27 14:47:55 +00:00
|
|
|
"uuid": "^8.3.2",
|
|
|
|
"zod": "^3.8.2"
|
2021-03-22 13:48:48 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-09-29 14:36:58 +00:00
|
|
|
"@next/bundle-analyzer": "11.1.2",
|
2021-09-22 19:52:38 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "2.0.4",
|
2021-09-22 22:43:10 +00:00
|
|
|
"@types/async": "^3.2.7",
|
2021-08-18 11:52:25 +00:00
|
|
|
"@types/bcryptjs": "^2.4.2",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@types/jest": "^27.0.1",
|
2021-09-22 07:25:33 +00:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2021-09-22 22:43:10 +00:00
|
|
|
"@types/lodash.merge": "^4.6.6",
|
2021-09-28 13:00:19 +00:00
|
|
|
"@types/micro": "^7.3.6",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@types/node": "^16.6.1",
|
|
|
|
"@types/nodemailer": "^6.4.4",
|
2021-09-21 09:29:20 +00:00
|
|
|
"@types/qrcode": "^1.4.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@types/react": "^17.0.18",
|
2021-09-06 13:51:15 +00:00
|
|
|
"@types/react-select": "^4.0.17",
|
2021-09-22 18:36:13 +00:00
|
|
|
"@types/uuid": "8.3.1",
|
2021-09-02 16:54:09 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.30.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@typescript-eslint/parser": "^4.29.2",
|
|
|
|
"autoprefixer": "^10.3.1",
|
2021-10-07 15:07:57 +00:00
|
|
|
"babel": "^6.23.0",
|
|
|
|
"babel-jest": "^27.2.4",
|
|
|
|
"babel-plugin-istanbul": "^6.0.0",
|
2021-10-05 10:05:48 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2021-09-02 16:41:15 +00:00
|
|
|
"cypress": "^8.3.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"eslint": "^7.32.0",
|
2021-06-21 17:34:01 +00:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
2021-09-03 17:33:00 +00:00
|
|
|
"eslint-plugin-react": "^7.25.1",
|
2021-06-21 17:34:01 +00:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"husky": "^7.0.1",
|
2021-09-27 17:04:32 +00:00
|
|
|
"jest": "^27.2.2",
|
2021-10-07 15:07:57 +00:00
|
|
|
"jest-playwright": "^0.0.1",
|
|
|
|
"jest-playwright-preset": "^1.7.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"lint-staged": "^11.1.2",
|
2021-06-24 22:15:18 +00:00
|
|
|
"mockdate": "^3.0.5",
|
2021-10-05 10:05:48 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-10-07 15:07:57 +00:00
|
|
|
"nyc": "^15.1.0",
|
|
|
|
"playwright": "^1.15.2",
|
2021-08-18 08:08:33 +00:00
|
|
|
"postcss": "^8.3.6",
|
|
|
|
"prettier": "^2.3.2",
|
2021-09-02 15:20:36 +00:00
|
|
|
"prisma": "^2.30.2",
|
2021-09-29 10:28:27 +00:00
|
|
|
"tailwindcss": "^2.2.16",
|
2021-10-07 15:07:57 +00:00
|
|
|
"ts-jest": "^27.0.5",
|
2021-09-02 15:20:36 +00:00
|
|
|
"ts-node": "^10.2.1",
|
2021-09-13 09:48:55 +00:00
|
|
|
"typescript": "^4.4.3"
|
2021-06-21 17:34:01 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2021-09-22 19:52:38 +00:00
|
|
|
"./{*,{ee,pages,components,lib}/**/*}.{js,ts,jsx,tsx}": [
|
2021-06-21 17:34:01 +00:00
|
|
|
"prettier --write",
|
|
|
|
"eslint"
|
|
|
|
]
|
2021-03-10 10:02:39 +00:00
|
|
|
}
|
|
|
|
}
|