-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
72 lines (72 loc) · 2.61 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
{
"name": "blitzar-monorepo",
"private": true,
"workspaces": [
"packages/*",
"example-projects/*"
],
"scripts": {
"dev": "concurrently -n 'components,types,utils,docs' -c 'blue,yellow,gray,green' 'npm run dev -w=@blitzar/components' 'npm run dev -w=@blitzar/types' 'npm run dev -w=@blitzar/utils' 'npm run dev -w=docs'",
"dev:docs": "concurrently -n 'components,types,utils,docs' -c 'blue,yellow,gray,green' 'npm run watch -w=@blitzar/components' 'npm run dev -w=@blitzar/types' 'npm run dev -w=@blitzar/utils' 'npm run dev -w=docs'",
"dev:quasar": "npm run dev -w example-quasar",
"build": "lerna run build",
"publish": "lerna publish --force-publish && npm run _deploy:post",
"deploy:docs": "firebase deploy --only hosting:blitzar && npm run _deploy:post",
"_deploy:post": "git add -A && git commit -m \"chore: deploy\" && git push",
"dep:update-all": "ncu --target minor -u && lerna exec 'ncu --target minor -u' && npm i",
"dep:check-for-updates": "ncu && lerna exec 'ncu'",
"dep:reinstall-all:hard": "rimraf package-lock.json && npm run _dep:clean && npm i",
"dep:reinstall-all:soft": "npm run _dep:clean && npm i",
"_dep:clean": "lerna clean -y && rimraf node_modules"
},
"devDependencies": {
"@meforma/vue-toaster": "^1.3.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.42",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@vitejs/plugin-vue": "^2.3.3",
"@viteplay/plugin": "^0.2.5",
"@viteplay/vue": "^0.2.5",
"concurrently": "^7.2.1",
"copyfiles": "^2.4.1",
"cpy-cli": "^3.1.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^8.7.1",
"esm": "^3.2.25",
"fs-extra": "^10.1.0",
"lerna": "^5.1.8",
"npm-check-updates": "^12.5.12",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"replace-in-files-cli": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-typescript2": "^0.32.1",
"sass": "^1.52.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"vite": "^2.9.12",
"vitest": "^0.14.2",
"vue": "^3.2.37",
"vue-intellisense": "^1.0.1",
"vue-router": "^4.0.16",
"vue-tsc": "^0.38.5"
},
"engines": {
"node": ">= 14",
"npm": ">= 7.14.0"
},
"author": "Luca Ban - Mesqueeb",
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"homepage": "https://github.com/cycraft/blitzar#readme",
"bugs": {
"url": "https://github.com/cycraft/blitzar/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycraft/blitzar.git"
}
}