tldraw/package.json

96 lines
2.8 KiB
JSON
Raw Normal View History

2021-05-09 12:03:39 +00:00
{
2021-06-21 21:35:28 +00:00
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
2021-05-09 12:03:39 +00:00
"scripts": {
"build": "next build",
2021-06-24 08:20:29 +00:00
"dev": "next dev",
2021-06-21 21:35:28 +00:00
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
2021-06-27 13:53:06 +00:00
"scripts": "node scripts/type-gen && node scripts/docs-gen && prettier --write './components/code-panel/*'",
2021-06-24 08:20:29 +00:00
"start": "next start",
"test-all": "yarn lint && yarn type-check && yarn test",
2021-06-21 21:35:28 +00:00
"test:update": "jest --updateSnapshot",
2021-06-26 11:52:36 +00:00
"test:watch": "jest --watchAll --verbose=false --silent=false",
"test": "jest --watchAll=false",
2021-06-24 08:20:29 +00:00
"type-check": "tsc --pretty --noEmit"
2021-06-21 21:35:28 +00:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
2021-05-09 12:03:39 +00:00
},
"dependencies": {
2021-06-21 21:35:28 +00:00
"@monaco-editor/react": "^4.2.1",
"@radix-ui/react-checkbox": "^0.0.16",
2021-06-21 21:35:28 +00:00
"@radix-ui/react-context-menu": "^0.0.22",
"@radix-ui/react-dialog": "^0.0.18",
2021-06-21 21:35:28 +00:00
"@radix-ui/react-dropdown-menu": "^0.0.21",
2021-06-20 12:35:47 +00:00
"@radix-ui/react-hover-card": "^0.0.3",
2021-05-26 19:20:52 +00:00
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-radio-group": "^0.0.17",
"@radix-ui/react-tooltip": "^0.0.19",
2021-06-21 21:35:28 +00:00
"@sentry/integrations": "^6.7.2",
"@sentry/nextjs": "^6.7.2",
"@sentry/node": "^6.7.2",
"@sentry/react": "^6.7.2",
"@sentry/tracing": "^6.7.2",
2021-06-19 09:00:44 +00:00
"@sentry/webpack-plugin": "^1.15.1",
2021-06-21 21:35:28 +00:00
"@state-designer/react": "^1.7.32",
"@stitches/react": "^0.2.2",
"@types/uuid": "^8.3.0",
"browser-fs-access": "^0.17.3",
2021-06-21 21:35:28 +00:00
"framer-motion": "^4.1.17",
2021-06-19 09:00:44 +00:00
"gtag": "^1.0.1",
2021-06-12 19:40:26 +00:00
"idb-keyval": "^5.0.6",
"ismobilejs": "^1.1.1",
2021-06-21 21:35:28 +00:00
"monaco-editor": "^0.25.2",
"next": "^11.0.1",
2021-06-19 10:22:23 +00:00
"next-auth": "^3.27.0",
2021-06-11 12:37:09 +00:00
"next-pwa": "^5.2.21",
"perfect-freehand": "^0.4.9",
2021-06-21 21:35:28 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
2021-05-14 22:56:41 +00:00
"react-feather": "^2.0.9",
2021-06-27 13:53:06 +00:00
"react-markdown": "^6.0.2",
2021-05-28 13:08:51 +00:00
"react-use-gesture": "^9.1.3",
2021-06-24 14:59:56 +00:00
"sucrase": "^3.19.0",
2021-05-09 21:22:25 +00:00
"uuid": "^8.3.2"
2021-05-09 12:03:39 +00:00
},
"devDependencies": {
"@babel/core": "^7.14.6",
2021-06-21 21:35:28 +00:00
"@types/jest": "^26.0.23",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-jest": "^27.0.5",
2021-06-21 21:35:28 +00:00
"eslint": "^7.19.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.5",
"jest-esm-transformer": "^1.0.0",
2021-06-21 21:35:28 +00:00
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"prettier": "^2.3.1",
"typescript": "^4.1.3"
2021-06-22 18:13:16 +00:00
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
2021-05-09 12:03:39 +00:00
}
2021-06-27 13:53:06 +00:00
}