Files
shellphone.app/package.json

101 lines
2.5 KiB
JSON
Raw Normal View History

2021-07-18 23:32:45 +08:00
{
2021-08-03 21:03:10 +08:00
"name": "shellphone.app",
2021-07-31 22:33:18 +08:00
"version": "1.0.0",
"scripts": {
2021-08-28 14:20:15 +08:00
"dev": "concurrently --raw \"blitz dev\" 'DISABLE_TELEMETRY=true quirrel'",
2021-07-31 22:33:18 +08: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": {
"node": "16"
},
2021-07-31 22:33:18 +08:00
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": true,
"useTabs": true,
"tabWidth": 4,
2021-08-01 22:01:51 +08:00
"printWidth": 120,
2021-08-01 20:04:04 +08:00
"trailingComma": "all",
"bracketSameLine": false,
2021-08-01 20:04:04 +08:00
"quoteProps": "as-needed",
"singleQuote": false
2021-07-31 22:33:18 +08:00
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
2021-09-27 06:08:02 +08:00
"@devoxa/paddle-sdk": "0.2.1",
2021-12-04 01:01:19 +01:00
"@headlessui/react": "1.4.2",
"@hookform/resolvers": "2.8.4",
"@maizzle/framework": "3.7.2",
2021-09-22 02:19:24 +08:00
"@panelbear/panelbear-js": "1.3.2",
2021-12-04 01:01:19 +01:00
"@prisma/client": "3.6.0",
"@react-aria/interactions": "3.7.0",
"@sentry/browser": "6.15.0",
"@sentry/integrations": "6.15.0",
"@sentry/node": "6.15.0",
"@sentry/tracing": "6.15.0",
"@sentry/webpack-plugin": "1.18.3",
2021-10-16 01:44:33 +02:00
"@tailwindcss/forms": "0.3.4",
"@tailwindcss/line-clamp": "0.2.2",
2021-07-31 22:33:18 +08:00
"@tailwindcss/typography": "0.4.1",
2021-08-20 08:31:55 +08:00
"@twilio/voice-sdk": "2.0.1",
2021-10-16 01:44:33 +02:00
"awesome-phonenumber": "2.64.0",
2021-12-04 01:01:19 +01:00
"aws-sdk": "2.1043.0",
2021-12-04 00:55:20 +01:00
"blitz": "0.44.0",
2021-07-31 22:33:18 +08:00
"clsx": "1.1.1",
2021-12-04 01:01:19 +01:00
"got": "11.8.3",
"jotai": "1.4.6",
"luxon": "2.1.1",
"next-pwa": "5.4.1",
2021-10-16 01:44:33 +02:00
"pino": "6.13.3",
"pino-pretty": "7.1.0",
2021-12-04 01:01:19 +01:00
"prisma": "3.6.0",
"quirrel": "1.7.4",
"react": "18.0.0-beta-4729ff6d1-20211202",
"react-datocms": "1.6.6",
"react-dom": "18.0.0-beta-4729ff6d1-20211202",
"react-hook-form": "7.20.5",
2021-10-16 01:44:33 +02:00
"react-icons": "4.3.1",
2021-08-01 15:40:18 +08:00
"react-spring-bottom-sheet": "3.4.0",
2021-12-04 01:01:19 +01:00
"remark": "14.0.2",
"remark-html": "15.0.1",
"tailwindcss": "2.2.19",
"twilio": "3.71.3",
2021-08-02 00:28:47 +08:00
"web-push": "3.4.5",
2021-12-04 01:01:19 +01:00
"zod": "3.11.6"
2021-07-31 22:33:18 +08:00
},
"devDependencies": {
2021-12-04 01:01:19 +01:00
"@types/luxon": "2.0.7",
"@types/pino": "6.3.11",
2021-07-31 22:33:18 +08:00
"@types/preview-email": "2.0.1",
2021-12-04 01:01:19 +01:00
"@types/react": "17.0.37",
"@types/test-listen": "1.1.0",
2021-08-02 00:28:47 +08:00
"@types/web-push": "3.3.2",
2021-12-04 01:01:19 +01:00
"autoprefixer": "10.4.0",
"concurrently": "6.4.0",
"eslint": "7.32.0",
2021-07-31 22:33:18 +08:00
"husky": "6.0.0",
"isomorphic-unfetch": "3.1.0",
2021-12-04 01:01:19 +01:00
"lint-staged": "12.1.2",
"postcss": "8.4.4",
"prettier": "2.5.0",
"prettier-plugin-prisma": "3.6.0",
"pretty-quick": "3.1.2",
2021-08-20 09:06:32 +08:00
"preview-email": "3.0.5",
"test-listen": "1.1.0",
2021-12-04 01:01:19 +01:00
"type-fest": "2.8.0",
2021-12-04 00:55:20 +01:00
"typescript": "4.5.2"
2021-07-31 22:33:18 +08:00
},
"private": true
2021-07-18 23:32:45 +08:00
}