webapp/package.json

152 lines
5.2 KiB
JSON
Raw Normal View History

2022-09-09 11:53:35 +00:00
{
2022-09-13 08:05:11 +00:00
"name": "discoursio-webapp",
2022-11-27 18:36:45 +00:00
"version": "0.7.0",
2022-09-09 11:53:35 +00:00
"private": true,
"license": "MIT",
"scripts": {
2022-11-19 14:13:24 +00:00
"build": "astro build",
2022-09-09 11:53:35 +00:00
"check": "npm run lint && npm run typecheck",
"codegen": "graphql-codegen",
2022-11-19 14:13:24 +00:00
"deploy": "graphql-codegen && npm run typecheck && astro build && vercel",
"dev": "astro dev",
2022-09-19 08:52:26 +00:00
"ffix": "npm run fix && npm run format",
2022-09-09 11:53:35 +00:00
"fix": "npm run lint:code:fix && npm run lint:styles:fix",
"format": "npx prettier \"{,!(node_modules)/**/}*.{js,ts,tsx,json,scss,css}\" --write --ignore-path .gitignore",
"lint": "npm run lint:code && npm run lint:styles",
"lint:code": "eslint .",
"lint:code:fix": "eslint . --fix",
"lint:styles": "stylelint **/*.{scss,css}",
"lint:styles:fix": "stylelint **/*.{scss,css} --fix",
2022-10-25 15:44:31 +00:00
"pre-commit": "lint-staged",
2022-10-19 14:26:49 +00:00
"pre-commit-old": "lint-staged",
2022-10-31 13:45:38 +00:00
"pre-push": "",
2022-10-19 14:26:49 +00:00
"pre-push-old": "npm run typecheck",
2022-09-09 11:53:35 +00:00
"prepare": "husky install",
2022-11-19 14:13:24 +00:00
"preview": "astro preview",
2022-09-09 11:53:35 +00:00
"server": "node server/server.mjs",
2022-11-19 14:13:24 +00:00
"start": "astro dev",
2022-11-23 11:45:52 +00:00
"start:local": "cross-env PUBLIC_API_URL=http://127.0.0.1:8080 astro dev",
2022-11-23 13:53:48 +00:00
"start:staging": "cross-env PUBLIC_API_URL=https://testapi.discours.io astro dev",
2022-11-19 14:13:24 +00:00
"typecheck": "astro check && tsc --noEmit",
2022-09-09 11:53:35 +00:00
"typecheck:watch": "tsc --noEmit --watch",
2022-11-19 14:13:24 +00:00
"vercel-build": "astro build"
2022-09-09 11:53:35 +00:00
},
"dependencies": {
2022-11-24 09:35:05 +00:00
"@aws-sdk/client-s3": "^3.216.0",
"@aws-sdk/s3-presigned-post": "^3.216.0",
2022-11-29 11:01:23 +00:00
"@aws-sdk/signature-v4-multi-region": "^3.215.0",
"@aws-sdk/util-user-agent-node": "^3.215.0",
2022-12-03 10:35:48 +00:00
"formidable": "^2.1.1",
2022-11-13 06:41:04 +00:00
"mailgun.js": "^8.0.2"
2022-09-09 11:53:35 +00:00
},
"devDependencies": {
2022-11-15 15:52:21 +00:00
"@astrojs/solid-js": "^1.2.3",
2022-11-13 06:41:04 +00:00
"@astrojs/vercel": "^2.3.3",
"@babel/core": "^7.20.2",
2022-11-15 15:52:21 +00:00
"@graphql-codegen/cli": "^2.13.12",
"@graphql-codegen/typescript": "^2.8.2",
"@graphql-codegen/typescript-operations": "^2.5.7",
2022-11-13 06:41:04 +00:00
"@graphql-codegen/typescript-urql": "^3.7.3",
2022-09-09 11:53:35 +00:00
"@graphql-codegen/urql-introspection": "^2.2.1",
2022-11-15 15:52:21 +00:00
"@graphql-tools/url-loader": "^7.16.16",
2022-09-09 11:53:35 +00:00
"@graphql-typed-document-node/core": "^3.1.1",
2022-10-08 05:24:09 +00:00
"@nanostores/router": "^0.7.0",
"@nanostores/solid": "^0.3.0",
2022-09-23 23:42:19 +00:00
"@popperjs/core": "^2.11.6",
2022-11-20 18:49:44 +00:00
"@solid-devtools/debugger": "^0.15.1",
2022-11-13 06:41:04 +00:00
"@solid-devtools/logger": "^0.5.0",
"@solid-primitives/memo": "^1.1.2",
"@solid-primitives/storage": "^1.3.3",
2022-12-02 06:28:05 +00:00
"@solid-primitives/upload": "^0.0.105",
2022-09-23 23:42:19 +00:00
"@types/express": "^4.17.14",
2022-11-13 06:41:04 +00:00
"@types/node": "^18.11.9",
2022-09-09 11:53:35 +00:00
"@types/uuid": "^8.3.4",
2022-11-15 15:52:21 +00:00
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
2022-11-13 06:41:04 +00:00
"@urql/core": "^3.0.5",
2022-09-09 11:53:35 +00:00
"@urql/devtools": "^2.0.3",
2022-11-13 06:41:04 +00:00
"@urql/exchange-graphcache": "^5.0.5",
2022-11-15 15:52:21 +00:00
"astro": "^1.6.8",
2022-10-31 16:32:56 +00:00
"astro-eslint-parser": "^0.9.0",
2022-09-09 11:53:35 +00:00
"bcryptjs": "^2.4.3",
2022-11-19 08:53:27 +00:00
"bootstrap": "^5.2.2",
2022-09-09 11:53:35 +00:00
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"cookie-signature": "^1.2.0",
2022-11-20 18:49:44 +00:00
"cross-env": "^7.0.3",
2022-11-13 06:41:04 +00:00
"eslint": "^8.27.0",
2022-10-07 19:35:53 +00:00
"eslint-config-stylelint": "^17.0.0",
2022-11-13 06:41:04 +00:00
"eslint-import-resolver-typescript": "^3.5.2",
2022-10-31 16:32:56 +00:00
"eslint-plugin-astro": "^0.21.0",
2022-09-09 11:53:35 +00:00
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
2022-11-13 06:41:04 +00:00
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-solid": "^0.8.0",
2022-10-22 14:17:34 +00:00
"eslint-plugin-sonarjs": "^0.16.0",
2022-11-21 13:02:04 +00:00
"eslint-plugin-unicorn": "^45.0.0",
2022-09-23 23:42:19 +00:00
"graphql": "^16.6.0",
2022-09-09 11:53:35 +00:00
"graphql-tag": "^2.12.6",
2022-09-23 23:42:19 +00:00
"graphql-ws": "^5.11.2",
"hast-util-select": "^5.0.2",
2022-11-13 06:41:04 +00:00
"husky": "^8.0.2",
"idb": "^7.1.1",
"jest": "^29.3.1",
2022-09-09 11:53:35 +00:00
"lint-staged": "^13.0.3",
2022-11-13 06:41:04 +00:00
"loglevel": "^1.8.1",
2022-10-31 12:49:41 +00:00
"loglevel-plugin-prefix": "^0.8.4",
2022-10-08 05:24:09 +00:00
"markdown-it": "^13.0.1",
"markdown-it-container": "^3.0.0",
"markdown-it-implicit-figures": "^0.10.0",
"markdown-it-mark": "^3.0.1",
"markdown-it-replace-link": "^1.1.0",
2022-11-15 15:52:21 +00:00
"nanostores": "^0.7.1",
2022-10-09 08:33:28 +00:00
"orderedmap": "^2.1.0",
2022-11-13 06:41:04 +00:00
"postcss": "^8.4.19",
2022-11-13 09:25:31 +00:00
"postcss-modules": "5.0.0",
2022-09-23 23:42:19 +00:00
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prosemirror-commands": "^1.3.1",
2022-11-13 06:41:04 +00:00
"prosemirror-dropcursor": "^1.6.1",
2022-09-09 11:53:35 +00:00
"prosemirror-example-setup": "^1.2.1",
"prosemirror-gapcursor": "^1.3.1",
"prosemirror-history": "^1.3.0",
"prosemirror-inputrules": "^1.2.0",
"prosemirror-keymap": "^1.2.0",
2022-11-13 06:41:04 +00:00
"prosemirror-markdown": "^1.10.1",
2022-09-09 11:53:35 +00:00
"prosemirror-menu": "^1.2.1",
2022-11-15 15:52:21 +00:00
"prosemirror-model": "^1.18.2",
2022-09-23 23:42:19 +00:00
"prosemirror-schema-list": "^1.2.2",
2022-11-13 06:41:04 +00:00
"prosemirror-state": "^1.4.2",
2022-11-15 15:52:21 +00:00
"prosemirror-view": "^1.29.1",
"rollup": "^2.79.1",
2022-11-13 06:41:04 +00:00
"rollup-plugin-visualizer": "^5.8.3",
2022-11-20 19:57:19 +00:00
"sass": "1.32.13",
2022-11-13 06:41:04 +00:00
"solid-devtools": "^0.22.0",
"solid-js": "^1.6.2",
2022-09-09 11:53:35 +00:00
"solid-js-form": "^0.1.5",
2022-09-23 23:42:19 +00:00
"solid-jsx": "^0.9.1",
2022-09-09 11:53:35 +00:00
"solid-social": "^0.9.0",
"solid-utils": "^0.8.1",
2022-11-13 06:41:04 +00:00
"sort-package-json": "^2.1.0",
2022-11-13 12:14:04 +00:00
"stylelint": "^14.15.0",
2022-09-09 11:53:35 +00:00
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
2022-11-13 06:41:04 +00:00
"stylelint-config-standard-scss": "^6.1.0",
2022-09-09 11:53:35 +00:00
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
2022-11-13 06:41:04 +00:00
"swiper": "^8.4.4",
2022-09-09 11:53:35 +00:00
"ts-node": "^10.9.1",
2022-11-13 06:41:04 +00:00
"typescript": "^4.8.4",
"undici": "^5.12.0",
2022-09-09 11:53:35 +00:00
"unique-names-generator": "^4.7.1",
"uuid": "^9.0.0",
2022-11-15 15:52:21 +00:00
"vite": "^3.2.4",
2022-11-19 12:50:01 +00:00
"vite-plugin-html-purgecss": "^0.1.1",
2022-11-13 06:41:04 +00:00
"ws": "^8.11.0",
2022-10-07 19:35:53 +00:00
"y-prosemirror": "^1.2.0",
2022-09-09 11:53:35 +00:00
"y-protocols": "^1.0.5",
2022-09-23 23:42:19 +00:00
"y-webrtc": "^10.2.3",
2022-11-13 06:41:04 +00:00
"yjs": "^13.5.42"
2022-09-09 11:53:35 +00:00
}
}