-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 3.2 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
{
"name": "@myparcel-do/monorepo",
"version": "6.3.0",
"private": true,
"description": "MyParcel delivery options module for checkouts.",
"homepage": "https://developer.myparcel.nl/documentation/60.delivery-options.html/",
"repository": {
"type": "git",
"url": "git+https://github.com/myparcelnl/delivery-options.git"
},
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"build": "nx run-many -t build --output-style=stream",
"build:dev": "nx run-many -t build:dev --output-style=stream",
"clean": "nx run-many -t clean --parallel=99",
"lint": "nx affected -t lint --output-style=stream",
"lint:fix": "nx affected -t lint:fix --output-style=stream",
"prepare": "(is-ci || husky install)",
"serve": "nx run-many -t serve --parallel=99",
"serve:delivery-options": "nx run @myparcel/delivery-options:serve",
"serve:sandbox": "nx run @myparcel-do/sandbox:serve",
"test": "nx run-many -t test --parallel=99 --output-style=stream",
"test:coverage": "nx run-many -t test:coverage --output-style=stream",
"test:run": "nx run-many -t test:run --output-style=stream",
"test:update": "nx run-many -t test:update --output-style=stream",
"translations:import": "yarn workspace @myparcel-do/sandbox run translations:import",
"typecheck": "nx run-many -t typecheck",
"watch": "nx run-many -t watch:myparcel --output-style=stream --parallel=99",
"watch:lib": "nx run-many -t watch:myparcel-lib --output-style=stream --parallel=99",
"ws:clean": "cd $0 && rimraf dist coverage .eslintcache tsconfig.build.tsbuildinfo",
"ws:lint": "eslint --cache $0",
"ws:lint:fix": "eslint --cache --fix $0",
"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"
},
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
"*.{ts,vue,js,cjs,mjs}": "yarn run ws:lint:fix",
"package.json": "npx sort-package-json"
},
"prettier": "@myparcel/prettier-config",
"resolutions": {
"@myparcel/constants": "^2.0.0",
"conventional-changelog-conventionalcommits": ">= 8.0.0",
"eslint-plugin-prettier": "^4.2.1",
"typescript": "^5.4.0"
},
"devDependencies": {
"@myparcel-eslint/eslint-config-esnext": "^1.3.0",
"@myparcel-eslint/eslint-config-import": "^1.2.0",
"@myparcel-eslint/eslint-config-node": "^1.3.0",
"@myparcel-eslint/eslint-config-prettier": "^1.3.0",
"@myparcel-eslint/eslint-config-prettier-typescript": "^1.3.0",
"@myparcel-eslint/eslint-config-prettier-typescript-vue": "^1.3.0",
"@types/is-ci": "^3.0.0",
"@types/node": "^20.9.0",
"@vue/tsconfig": "^0.5.0",
"array.prototype.flatmap": "^1.3.0",
"conventional-changelog-conventionalcommits": "^7.0.0",
"eslint": "^8.53.0",
"eslint-plugin-sort-exports": "^0.9.1",
"husky": "^9.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.0",
"nx": "^19.0.0",
"prettier": "^2.0.0",
"rimraf": "^6.0.0",
"typescript": "5.4.5"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.15.1",
"yarn": "4.3.1"
}
}