shellphone.app/package.json

110 lines
3.2 KiB
JSON
Raw Normal View History

2021-07-18 15:32:45 +00:00
{
2021-08-03 13:03:10 +00:00
"name": "shellphone.app",
2021-07-31 14:33:18 +00:00
"version": "1.0.0",
"scripts": {
2021-08-28 06:20:15 +00:00
"dev": "concurrently --raw \"blitz dev\" 'DISABLE_TELEMETRY=true quirrel'",
2021-07-31 14:33:18 +00:00
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"engines": {
2021-08-27 20:18:03 +00:00
"node": ">=12 <15"
},
2021-07-31 14:33:18 +00:00
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": true,
"useTabs": true,
"tabWidth": 4,
2021-08-01 14:01:51 +00:00
"printWidth": 120,
2021-08-01 12:04:04 +00:00
"trailingComma": "all",
"jsxBracketSameLine": false,
"quoteProps": "as-needed",
"singleQuote": false
2021-07-31 14:33:18 +00:00
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@fortawesome/fontawesome-pro": "file:./fontawesome/fortawesome-fontawesome-pro-5.15.3.tgz",
2021-08-20 01:06:32 +00:00
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
2021-07-31 14:33:18 +00:00
"@fortawesome/pro-duotone-svg-icons": "file:./fontawesome/fortawesome-pro-duotone-svg-icons-5.15.3.tgz",
"@fortawesome/pro-light-svg-icons": "file:./fontawesome/fortawesome-pro-light-svg-icons-5.15.3.tgz",
"@fortawesome/pro-regular-svg-icons": "file:./fontawesome/fortawesome-pro-regular-svg-icons-5.15.3.tgz",
"@fortawesome/pro-solid-svg-icons": "file:./fontawesome/fortawesome-pro-solid-svg-icons-5.15.3.tgz",
2021-08-05 17:07:15 +00:00
"@fortawesome/react-fontawesome": "0.1.15",
2021-07-31 17:22:48 +00:00
"@headlessui/react": "1.4.0",
2021-08-20 01:06:32 +00:00
"@heroicons/react": "1.0.4",
"@hookform/resolvers": "2.8.0",
2021-08-28 22:14:18 +00:00
"@panelbear/panelbear-js": "1.2.0",
2021-08-27 17:02:27 +00:00
"@prisma/client": "2.30.0",
2021-08-20 01:06:32 +00:00
"@react-aria/interactions": "3.5.1",
"@sentry/browser": "6.12.0",
"@sentry/integrations": "6.12.0",
"@sentry/node": "6.12.0",
2021-09-06 20:58:31 +00:00
"@sentry/tracing": "6.12.0",
"@sentry/webpack-plugin": "1.17.1",
2021-07-31 14:33:18 +00:00
"@tailwindcss/forms": "0.3.3",
"@tailwindcss/line-clamp": "0.2.1",
2021-07-31 14:33:18 +00:00
"@tailwindcss/typography": "0.4.1",
2021-08-20 00:31:55 +00:00
"@twilio/voice-sdk": "2.0.1",
2021-08-27 17:02:27 +00:00
"awesome-phonenumber": "2.58.0",
2021-08-29 23:20:26 +00:00
"blitz": "0.40.0-canary.7",
2021-07-31 14:33:18 +00:00
"clsx": "1.1.1",
"got": "11.8.2",
2021-08-27 17:02:27 +00:00
"jotai": "1.3.2",
"luxon": "2.0.2",
2021-08-20 01:06:32 +00:00
"next-pwa": "5.3.1",
2021-08-27 17:02:27 +00:00
"pino": "6.13.1",
"pino-pretty": "6.0.0",
"prisma": "2.30.0",
2021-08-20 00:31:55 +00:00
"quirrel": "1.7.1",
2021-08-27 17:02:27 +00:00
"react": "18.0.0-alpha-8723e772b-20210826",
2021-08-27 16:08:38 +00:00
"react-datocms": "1.6.3",
2021-08-27 17:02:27 +00:00
"react-dom": "18.0.0-alpha-8723e772b-20210826",
"react-hook-form": "7.14.0",
2021-08-01 07:40:18 +00:00
"react-spring": "9.2.4",
"react-spring-bottom-sheet": "3.4.0",
"react-use-gesture": "9.1.3",
2021-08-03 21:04:17 +00:00
"remark": "14.0.1",
2021-08-20 01:06:32 +00:00
"remark-html": "14.0.0",
2021-08-27 17:02:27 +00:00
"tailwindcss": "2.2.8",
"twilio": "3.67.1",
2021-08-01 16:28:47 +00:00
"web-push": "3.4.5",
2021-08-27 17:02:27 +00:00
"zod": "3.8.1"
2021-07-31 14:33:18 +00:00
},
"devDependencies": {
2021-08-29 23:20:26 +00:00
"@types/luxon": "2.0.2",
"@types/pino": "6.3.11",
2021-07-31 14:33:18 +00:00
"@types/preview-email": "2.0.1",
2021-08-20 01:06:32 +00:00
"@types/react": "17.0.19",
"@types/test-listen": "1.1.0",
2021-08-01 16:28:47 +00:00
"@types/web-push": "3.3.2",
2021-08-27 17:02:27 +00:00
"autoprefixer": "10.3.3",
2021-08-20 01:06:32 +00:00
"concurrently": "6.2.1",
"eslint": "7.32.0",
2021-07-31 14:33:18 +00:00
"husky": "6.0.0",
"isomorphic-unfetch": "3.1.0",
2021-08-20 01:06:32 +00:00
"lint-staged": "11.1.2",
2021-08-20 00:31:55 +00:00
"postcss": "8.3.6",
2021-07-31 14:33:18 +00:00
"prettier": "2.3.2",
2021-08-27 17:02:27 +00:00
"prettier-plugin-prisma": "2.30.0",
2021-07-31 14:33:18 +00:00
"pretty-quick": "3.1.1",
2021-08-20 01:06:32 +00:00
"preview-email": "3.0.5",
"test-listen": "1.1.0",
"type-fest": "2.1.0",
2021-08-27 17:02:27 +00:00
"typescript": "4.4.2"
2021-07-31 14:33:18 +00:00
},
"private": true
2021-07-18 15:32:45 +00:00
}