notebook/package.json

72 lines
2.1 KiB
JSON

{
"name": "@resources/notebook",
"scripts": {
"build": "cross-env NODE_ENV=production vite build",
"dev": "vite --port 3333 --open",
"test": "ava src/test/integration/**/*.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^0.19.10",
"@codemirror/closebrackets": "^0.19.0",
"@codemirror/commands": "^0.19.6",
"@codemirror/comment": "^0.19.0",
"@codemirror/fold": "^0.19.2",
"@codemirror/gutter": "^0.19.9",
"@codemirror/history": "^0.19.2",
"@codemirror/lang-css": "^0.19.3",
"@codemirror/lang-html": "^0.19.4",
"@codemirror/lang-javascript": "^0.19.4",
"@codemirror/lang-json": "^0.19.1",
"@codemirror/lang-markdown": "^0.19.4",
"@codemirror/lang-python": "^0.19.2",
"@codemirror/lang-sql": "^0.19.4",
"@codemirror/language": "^0.19.7",
"@codemirror/lint": "^0.19.3",
"@codemirror/matchbrackets": "^0.19.3",
"@codemirror/rectangular-selection": "^0.19.1",
"@codemirror/search": "^0.19.5",
"@codemirror/state": "^0.19.6",
"@codemirror/view": "^0.19.38",
"@vueuse/core": "^7.5.3",
"@vueuse/head": "^0.7.4",
"highlight.js": "^11.3.1",
"lodash": "^4.17.21",
"markdown-it": "^12.3.0",
"markdown-it-highlightjs": "^3.6.0",
"nanoid": "^3.1.30",
"nprogress": "^0.2.0",
"split-grid": "^1.0.11",
"vue": "^3.2.23",
"vue-router": "^4.0.5",
"vuex": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.14.2",
"@antfu/ni": "^0.12.0",
"@types/lodash": "^4.14.178",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"@vue/server-renderer": "^3.2.26",
"ava": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vite-plugin-windicss": "^1.6.1"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}