2021-03-10 10:02:39 +00:00
|
|
|
{
|
|
|
|
"name": "calendso",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next 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-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
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-04-20 12:56:50 +00:00
|
|
|
"@headlessui/react": "^1.0.0",
|
|
|
|
"@heroicons/react": "^1.0.1",
|
2021-05-05 15:04:53 +00:00
|
|
|
"@jitsu/sdk-js": "^2.0.1",
|
2021-05-21 20:03:36 +00:00
|
|
|
"@prisma/client": "^2.23.0",
|
2021-03-22 13:48:48 +00:00
|
|
|
"@tailwindcss/forms": "^0.2.1",
|
2021-06-09 19:46:41 +00:00
|
|
|
"async": "^3.2.0",
|
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-03-22 13:48:48 +00:00
|
|
|
"dayjs": "^1.10.4",
|
2021-07-15 14:10:26 +00:00
|
|
|
"dayjs-business-days": "^1.0.4",
|
2021-03-22 13:48:48 +00:00
|
|
|
"googleapis": "^67.1.1",
|
2021-06-23 21:11:38 +00:00
|
|
|
"handlebars": "^4.7.7",
|
2021-04-17 20:18:51 +00:00
|
|
|
"ics": "^2.27.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-04-28 17:26:24 +00:00
|
|
|
"next": "^10.2.0",
|
2021-03-24 15:03:04 +00:00
|
|
|
"next-auth": "^3.13.2",
|
2021-04-28 17:26:24 +00:00
|
|
|
"next-transpile-modules": "^7.0.0",
|
2021-05-27 22:10:20 +00:00
|
|
|
"nodemailer": "^6.6.1",
|
2021-03-10 10:02:39 +00:00
|
|
|
"react": "17.0.1",
|
2021-07-15 14:10:26 +00:00
|
|
|
"react-dates": "^21.8.0",
|
2021-04-26 12:01:21 +00:00
|
|
|
"react-dom": "17.0.1",
|
2021-05-08 19:03:47 +00:00
|
|
|
"react-phone-number-input": "^3.1.21",
|
|
|
|
"react-select": "^4.3.0",
|
2021-06-09 19:46:41 +00:00
|
|
|
"react-timezone-select": "^1.0.2",
|
2021-06-09 22:51:09 +00:00
|
|
|
"short-uuid": "^4.2.0",
|
2021-07-09 15:49:42 +00:00
|
|
|
"tslog": "^3.2.0",
|
2021-06-09 19:46:41 +00:00
|
|
|
"uuid": "^8.3.2"
|
2021-03-22 13:48:48 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-06-24 22:15:18 +00:00
|
|
|
"@types/jest": "^26.0.23",
|
2021-03-22 13:48:48 +00:00
|
|
|
"@types/node": "^14.14.33",
|
2021-06-23 21:16:41 +00:00
|
|
|
"@types/nodemailer": "^6.4.2",
|
2021-03-22 13:48:48 +00:00
|
|
|
"@types/react": "^17.0.3",
|
2021-07-15 14:10:26 +00:00
|
|
|
"@types/react-dates": "^21.8.3",
|
2021-06-21 17:34:01 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.27.0",
|
|
|
|
"@typescript-eslint/parser": "^4.27.0",
|
|
|
|
"autoprefixer": "^10.2.5",
|
|
|
|
"eslint": "^7.29.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
|
|
"eslint-plugin-react": "^7.24.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
|
|
"husky": "^6.0.0",
|
2021-06-24 22:15:18 +00:00
|
|
|
"jest": "^27.0.5",
|
2021-06-21 17:34:01 +00:00
|
|
|
"lint-staged": "^11.0.0",
|
2021-06-24 22:15:18 +00:00
|
|
|
"mockdate": "^3.0.5",
|
2021-06-21 17:34:01 +00:00
|
|
|
"postcss": "^8.2.8",
|
|
|
|
"prettier": "^2.3.1",
|
2021-05-21 20:03:36 +00:00
|
|
|
"prisma": "^2.23.0",
|
2021-06-20 09:57:33 +00:00
|
|
|
"tailwindcss": "^2.2.2",
|
2021-03-22 13:48:48 +00:00
|
|
|
"typescript": "^4.2.3"
|
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
|
|
|
}
|
|
|
|
}
|