cal/package.json

85 lines
2.2 KiB
JSON
Raw Normal View History

2021-03-10 07:02:39 -03:00
{
"name": "calendso",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
2021-03-10 07:02:39 -03:00
"build": "next build",
2021-04-13 17:56:49 -03:00
"start": "next start",
"postinstall": "prisma generate",
"pre-commit": "lint-staged",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"prepare": "husky install"
2021-03-10 07:02:39 -03:00
},
"dependencies": {
2021-04-20 09:56:50 -03:00
"@headlessui/react": "^1.0.0",
"@heroicons/react": "^1.0.1",
"@jitsu/sdk-js": "^2.0.1",
2021-05-21 17:03:36 -03:00
"@prisma/client": "^2.23.0",
2021-03-22 10:48:48 -03:00
"@tailwindcss/forms": "^0.2.1",
"async": "^3.2.0",
2021-03-24 12:03:04 -03:00
"bcryptjs": "^2.4.3",
2021-03-22 10:48:48 -03:00
"dayjs": "^1.10.4",
"googleapis": "^67.1.1",
2021-06-23 18:11:38 -03:00
"handlebars": "^4.7.7",
"ics": "^2.27.0",
2021-06-24 12:59:11 -03:00
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
2021-04-28 14:26:24 -03:00
"next": "^10.2.0",
2021-03-24 12:03:04 -03:00
"next-auth": "^3.13.2",
2021-04-28 14:26:24 -03:00
"next-transpile-modules": "^7.0.0",
"nodemailer": "^6.6.1",
2021-03-10 07:02:39 -03:00
"react": "17.0.1",
"react-dom": "17.0.1",
"react-phone-number-input": "^3.1.21",
"react-select": "^4.3.0",
"react-timezone-select": "^1.0.2",
2021-06-09 19:51:09 -03:00
"short-uuid": "^4.2.0",
"uuid": "^8.3.2"
2021-03-22 10:48:48 -03:00
},
"devDependencies": {
"@types/jest": "^26.0.23",
2021-03-22 10:48:48 -03:00
"@types/node": "^14.14.33",
2021-06-23 18:16:41 -03:00
"@types/nodemailer": "^6.4.2",
2021-03-22 10:48:48 -03:00
"@types/react": "^17.0.3",
"@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",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"mockdate": "^3.0.5",
"postcss": "^8.2.8",
"prettier": "^2.3.1",
2021-05-21 17:03:36 -03:00
"prisma": "^2.23.0",
"tailwindcss": "^2.2.2",
2021-03-22 10:48:48 -03:00
"typescript": "^4.2.3"
},
"lint-staged": {
"./{*,{pages,components,lib}/**/*}.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint"
]
},
"jest": {
"verbose": true,
"extensionsToTreatAsEsm": [
".ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^@components(.*)$": "<rootDir>/components$1",
"^@lib(.*)$": "<rootDir>/lib$1"
}
2021-03-10 07:02:39 -03:00
}
}