2021-03-10 10:02:39 +00:00
|
|
|
{
|
|
|
|
"name": "calendso",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next dev",
|
2021-09-02 15:20:36 +00:00
|
|
|
"db-up": "docker-compose up -d",
|
|
|
|
"db-migrate": "yarn prisma migrate dev",
|
|
|
|
"db-seed": "yarn ts-node scripts/seed.ts",
|
|
|
|
"db-nuke": "docker-compose down --volumes --remove-orphans",
|
|
|
|
"dx": "DATABASE_URL=postgresql://postgres:@localhost:5450/calendso eval 'yarn db-up && yarn prisma migrate dev && yarn db-seed && yarn dev'",
|
2021-07-06 18:23:33 +00:00
|
|
|
"test": "node node_modules/.bin/jest",
|
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": {
|
|
|
|
"node": "^14.0.0"
|
|
|
|
},
|
2021-03-10 10:02:39 +00:00
|
|
|
"dependencies": {
|
2021-08-18 08:08:33 +00:00
|
|
|
"@headlessui/react": "^1.4.0",
|
2021-08-18 13:10:04 +00:00
|
|
|
"@heroicons/react": "^1.0.4",
|
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-08-22 13:16:42 +00:00
|
|
|
"@radix-ui/react-avatar": "^0.0.15",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@radix-ui/react-collapsible": "^0.0.17",
|
|
|
|
"@radix-ui/react-dialog": "^0.0.20",
|
2021-08-13 07:59:48 +00:00
|
|
|
"@radix-ui/react-slider": "^0.0.17",
|
2021-08-07 12:02:01 +00:00
|
|
|
"@radix-ui/react-slot": "^0.0.12",
|
2021-08-09 22:43:57 +00:00
|
|
|
"@radix-ui/react-switch": "^0.0.15",
|
2021-08-07 12:02:01 +00:00
|
|
|
"@radix-ui/react-tooltip": "^0.0.21",
|
2021-08-18 08:08:33 +00:00
|
|
|
"@tailwindcss/forms": "^0.3.3",
|
|
|
|
"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-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-01 21:36:56 +00:00
|
|
|
"next": "^11.1.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"next-auth": "^3.28.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",
|
|
|
|
"react": "17.0.2",
|
2021-07-15 14:10:26 +00:00
|
|
|
"react-dates": "^21.8.0",
|
2021-08-18 08:08:33 +00:00
|
|
|
"react-dom": "17.0.2",
|
2021-08-12 04:44:11 +00:00
|
|
|
"react-easy-crop": "^3.5.2",
|
2021-08-18 08:18:18 +00:00
|
|
|
"react-hot-toast": "^2.1.0",
|
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-08-27 12:11:24 +00:00
|
|
|
"react-query": "^3.21.0",
|
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-06-09 22:51:09 +00:00
|
|
|
"short-uuid": "^4.2.0",
|
2021-08-23 16:15:03 +00:00
|
|
|
"tsdav": "^1.0.6",
|
2021-08-18 08:08:33 +00:00
|
|
|
"tslog": "^3.2.1",
|
2021-06-09 19:46:41 +00:00
|
|
|
"uuid": "^8.3.2"
|
2021-03-22 13:48:48 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
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",
|
|
|
|
"@types/node": "^16.6.1",
|
|
|
|
"@types/nodemailer": "^6.4.4",
|
|
|
|
"@types/react": "^17.0.18",
|
2021-07-15 14:10:26 +00:00
|
|
|
"@types/react-dates": "^21.8.3",
|
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-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",
|
|
|
|
"jest": "^27.0.6",
|
|
|
|
"lint-staged": "^11.1.2",
|
2021-06-24 22:15:18 +00:00
|
|
|
"mockdate": "^3.0.5",
|
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-08-18 08:08:33 +00:00
|
|
|
"tailwindcss": "^2.2.7",
|
2021-09-02 15:20:36 +00:00
|
|
|
"ts-node": "^10.2.1",
|
2021-08-18 08:08:33 +00:00
|
|
|
"typescript": "^4.3.5"
|
2021-06-21 17:34:01 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"./{*,{pages,components,lib}/**/*}.{js,ts,jsx,tsx}": [
|
|
|
|
"prettier --write",
|
|
|
|
"eslint"
|
|
|
|
]
|
2021-06-24 22:15:18 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"verbose": true,
|
|
|
|
"extensionsToTreatAsEsm": [
|
|
|
|
".ts"
|
|
|
|
],
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"ts"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^@components(.*)$": "<rootDir>/components$1",
|
|
|
|
"^@lib(.*)$": "<rootDir>/lib$1"
|
|
|
|
}
|
2021-03-10 10:02:39 +00:00
|
|
|
}
|
|
|
|
}
|