-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.29 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@myparcel-vfb/monorepo",
"version": "1.0.0",
"private": true,
"repository": "github:myparcelnl/vue-form-builder",
"type": "module",
"workspaces": [
"libs/*",
"apps/*"
],
"scripts": {
"build": "nx build --runner=cloud --output-style=stream",
"build:demo": "nx build demo --runner=cloud --output-style=stream",
"build:dev": "run build:dev:default --output-style=stream",
"build:dev:default": "nx run-many --target=build:dev --output-style=stream",
"clean": "nx run-many --target=clean",
"prepare": "is-ci || husky install",
"serve": "run build:dev:default && npx concurrently yarn:serve:demo yarn:serve:watch",
"serve:demo": "nx serve demo",
"serve:watch": "run build:dev:default --output-style=stream && nx watch --all -d -- nx run \\$NX_PROJECT_NAME:build:dev --output-style=stream",
"test": "nx run-many --target=test --parallel --output-style=stream",
"test:coverage": "nx run-many --target=test:coverage --runner=cloud --parallel=false --output-style=stream",
"test:run": "nx run-many --target=test:run --parallel=false --output-style=stream",
"typecheck": "nx run-many --target=typecheck",
"ws:clean": "cd $0 && rimraf dist coverage tsconfig.build.tsbuildinfo",
"ws:test": "cd $0 && vitest",
"ws:test:coverage": "cd $0 && vitest run --coverage",
"ws:test:run": "cd $0 && vitest run",
"ws:test:update": "cd $0 && vitest run -u",
"ws:vite:build": "cd $0 && vite build",
"ws:vite:build:dev": "cd $0 && vite build --mode development",
"ws:vite:typecheck": "cd $0 && vue-tsc -p tsconfig.build.json --noEmit"
},
"lint-staged": {
"*.{json,md,html}": "prettier --write",
"*.{ts,vue}": [
"eslint --fix --cache",
"nx affected --uncommitted --target=test:run --parallel=false --output-style=stream"
],
"package.json": "npx sort-package-json"
},
"prettier": "@myparcel/prettier-config",
"resolutions": {
"eslint-plugin-prettier": "^4.0.0"
},
"dependencies": {
"@nrwl/nx-cloud": "^19.0.0"
},
"devDependencies": {
"@monodeploy/plugin-github": "^2.0.1",
"@myparcel-eslint/eslint-config-esnext": "^1.2.0",
"@myparcel-eslint/eslint-config-import": "^1.0.0",
"@myparcel-eslint/eslint-config-node": "^1.2.0",
"@myparcel-eslint/eslint-config-prettier": "^1.2.0",
"@myparcel-eslint/eslint-config-prettier-typescript": "^1.2.0",
"@myparcel-eslint/eslint-config-prettier-typescript-vue": "^1.2.0",
"@nrwl/workspace": "^19.0.0",
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.9.0",
"@vitest/ui": "^2.0.3",
"@vue/tsconfig": "^0.5.0",
"array.prototype.flatmap": "^1.3.1",
"bundlewatch": "^0.3.3",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.34.0",
"eslint-plugin-sort-exports": "^0.9.0",
"husky": "^9.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.0",
"monodeploy": "^5.0.1",
"nx": "^19.0.0",
"prettier": "^2.8.4",
"rimraf": "^6.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.15.1",
"yarn": "4.3.1"
},
"bundlewatch": {
"ci": {
"trackBranches": [
"main",
"alpha",
"beta"
]
},
"files": [
{
"path": "./apps/vue-form-builder/dist/**/*.js"
}
]
}
}