mirror of
https://github.com/QingWei-Li/notea.git
synced 2024-11-26 00:09:59 +03:00
115 lines
3.2 KiB
JSON
115 lines
3.2 KiB
JSON
{
|
|
"name": "notea",
|
|
"version": "0.3.3",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next",
|
|
"debug": "NODE_OPTIONS='--inspect' next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint . --ext ts --ext tsx --ext js",
|
|
"postinstall": "yarn autoclean --force",
|
|
"build:i18n": "node scripts/extract-i18n"
|
|
},
|
|
"repository": "QingWei-Li/notea",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"pre-push": "npm run type-check"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.@(ts|tsx)": [
|
|
"npm run lint",
|
|
"npm run format"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@atlaskit/tree": "^8.3.0",
|
|
"@aws-sdk/client-s3": "^3.10.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.10.0",
|
|
"@headwayapp/react-widget": "^0.0.4",
|
|
"@material-ui/core": "^4.11.4",
|
|
"@material-ui/lab": "^4.0.0-alpha.58",
|
|
"adm-zip": "^0.5.5",
|
|
"classnames": "^2.2.6",
|
|
"csrf": "^3.1.0",
|
|
"dangerously-set-html-content": "^1.0.8",
|
|
"dayjs": "^1.10.4",
|
|
"escape-string-regexp": "^4.0.0",
|
|
"formidable": "^1.2.2",
|
|
"highlight.js": "^10.7.2",
|
|
"localforage": "^1.9.0",
|
|
"lodash": "^4.17.21",
|
|
"lzutf8": "^0.6.0",
|
|
"markdown-link-extractor": "^1.3.0",
|
|
"md5": "^2.3.0",
|
|
"minio": "^7.0.18",
|
|
"nanoid": "^3.1.22",
|
|
"next": "^11.0.0",
|
|
"next-connect": "^0.10.1",
|
|
"next-iron-session": "^4.1.11",
|
|
"next-seo": "^4.24.0",
|
|
"next-themes": "^0.0.14",
|
|
"notistack": "^1.0.7",
|
|
"outline-icons": "^1.27.0",
|
|
"prosemirror-inputrules": "^1.1.3",
|
|
"pupa": "^2.1.1",
|
|
"qss": "^2.0.3",
|
|
"react": "^17.0.2",
|
|
"react-div-100vh": "^0.5.6",
|
|
"react-hotkeys-hook": "^3.3.1",
|
|
"react-resize-detector": "^6.6.0",
|
|
"react-split": "^2.0.9",
|
|
"remove-markdown": "^0.3.0",
|
|
"rich-markdown-editor": "^11.13.0",
|
|
"rosetta": "^1.1.0",
|
|
"styled-components": "^5.2.1",
|
|
"ua-parser-js": "^0.7.24",
|
|
"unfurl.js": "^5.3.0",
|
|
"unstated-next": "^1.1.0",
|
|
"use-debounce": "^5.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@heroicons/react": "^1.0.1",
|
|
"@tailwindcss/typography": "^0.4.0",
|
|
"@types/adm-zip": "^0.4.34",
|
|
"@types/classnames": "^2.2.11",
|
|
"@types/formidable": "^1.0.32",
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/md5": "^2.3.0",
|
|
"@types/minio": "^7.0.7",
|
|
"@types/node": "^12.12.21",
|
|
"@types/prosemirror-inputrules": "^1.0.4",
|
|
"@types/react": "^17.0.11",
|
|
"@types/react-dom": "^17.0.8",
|
|
"@types/ua-parser-js": "^0.7.35",
|
|
"@typescript-eslint/eslint-plugin": "^4.15.0",
|
|
"@typescript-eslint/parser": "^4.15.0",
|
|
"autoprefixer": "^10.2.4",
|
|
"babel-plugin-lodash": "^3.3.4",
|
|
"eslint": "^7.20.0",
|
|
"eslint-config-next": "^11.0.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-plugin-react": "^7.22.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"husky": "^5.0.9",
|
|
"i18n-extract": "^0.6.7",
|
|
"lint-staged": "^10.5.4",
|
|
"next-pwa": "^5.2.21",
|
|
"nightwind": "^1.1.6",
|
|
"postcss": "^8.2.6",
|
|
"prettier": "^2.2.1",
|
|
"react-dom": "^17.0.2",
|
|
"tailwindcss": "^2.0.3",
|
|
"typescript": "^4.3.4"
|
|
},
|
|
"resolutions": {
|
|
"prosemirror-transform": "1.2.5",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"license": "MIT"
|
|
}
|