-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 743 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "vue-tinybase-monorepo",
"version": "0.4.0",
"author": "Nicolai Moraru <dot.nick.dot.messing@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev:todolist-ts-example": "cd packages/examples/todolist-ts && pnpm run dev",
"dev:vue-tinybase": "cd packages/public/vue-tinybase && pnpm run dev",
"dev": "run-p dev:*",
"docs:build": "cd packages/private/docs && pnpm run build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^14.12.3",
"npm-run-all2": "^6.2.2",
"tinybase": "^5.0.0",
"vite": "^5.3.3",
"vitest": "^1.6.0",
"vue": "^3.4.31"
}
}