-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 3.35 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "magnetar-monorepo",
"private": true,
"version": "1.2.7",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev:nuxt-firestore": "npm run -w=dev-nuxt-firestore dev",
"dev:vue3-firestore": "npm run -w=dev-vue3-firestore dev",
"dev:ui": "npm run -w=@magnetarjs/ui dev",
"dep:del-all": "npm exec --workspaces -- del-cli node_modules && del-cli node_modules",
"dep:update-minor": "ncu --target minor -u && npm --parallel exec ncu --target minor -u && echo \"review git changes and install with ni\"",
"dep:update-major": "ncu -ws -u && echo \"review git changes and install with ni\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:deploy": "npm docs:build && firebase deploy --only hosting && git add -A && git commit -m \"chore: deploy\"",
"docs:serve": "vitepress serve docs",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"build-and-commit": "npm run build && git add -A && git commit -m \"chore: build\"",
"build:nuxt-firestore": "npm run -w=dev-nuxt-firestore build",
"generate:nuxt-firestore": "npm run -w=dev-nuxt-firestore generate",
"preview:nuxt-firestore": "npm run -w=dev-nuxt-firestore preview",
"test": "turbo run test",
"_test:admin-broken": "npm test:core && npm test:plugin-simple-store && npm test:plugin-vue3 && npm test:plugin-firestore-admin",
"test:core": "npm run -w=@magnetarjs/core test",
"test:plugin-firestore": "npm run -w=@magnetarjs/plugin-firestore test",
"test:plugin-firestore-admin": "npm run -w=@magnetarjs/plugin-firestore-admin test",
"test:plugin-simple-store": "npm run -w=@magnetarjs/plugin-simple-store test",
"test:plugin-vue3": "npm run -w=@magnetarjs/plugin-vue3 test",
"prettier:run": "prettier --write \"packages/*/src/**/*.{vue,ts}\" && prettier --write \"docs/**/*.{vue,ts,md}\"",
"lint": "eslint",
"release": "npm run lint && npm run typecheck && npm run build && bumpp package-lock.json package.json packages/*/package.json --commit --push --tag && npm exec --workspaces -- npm publish --access public"
},
"overrides": {
"chart.js": "^4.4.3"
},
"devDependencies": {
"@cycraft/eslint": "^0.3.0",
"@cycraft/run-ts": "^0.0.0",
"@cycraft/tsconfig": "^0.1.2",
"@magnetarjs/core": "*",
"@magnetarjs/plugin-firestore": "*",
"@magnetarjs/plugin-vue3": "*",
"@magnetarjs/test-utils": "*",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/typescript": "^1.8.20",
"array-shuffle": "^3.0.0",
"browser-env": "^3.3.0",
"bumpp": "^9.4.1",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"esbuild": "^0.21.4",
"execa": "^9.1.0",
"firebase": "^10.12.2",
"firebase-admin": "^12.1.1",
"npm-check-updates": "^16.14.20",
"roll-anything": "^3.0.4",
"sass": "^1.77.4",
"turbo": "^1.13.3",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitepress": "1.2.2",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"vue-tsc": "^2.0.19"
},
"author": "Luca Ban - Mesqueeb",
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"homepage": "https://github.com/cycraft/magnetar#readme",
"bugs": {
"url": "https://github.com/cycraft/magnetar/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycraft/magnetar.git"
},
"engines": {
"node": ">=18"
}
}