-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 983 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 983 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
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "toolkit",
"version": "0.0.0",
"description": "Yard Toolkit monorepo",
"author": {
"name": "Yard | Digital Agency",
"email": "info@yard.nl",
"url": "https://www.yard.nl/"
},
"license": "EUPL-1.2",
"private": true,
"workspaces": [
"packages/stylelint-config",
"packages/prettier-config",
"packages/eslint-config",
"packages/postcss-config",
"packages/toolkit",
"packages/vite-config",
"packages/ts-config"
],
"scripts": {
"lint:js": "yard-toolkit lint js -m custom ./packages/**/src/**/*.js",
"format:js": "yard-toolkit format js -m custom ./packages/**/*.js",
"dep:check": "syncpack list-mismatches",
"dep:fix": "syncpack fix-mismatches",
"dep:outdated": "npm outdated --workspaces",
"dep:update": "ncu --deep -u && npm install",
"prepare": "husky"
},
"type": "commonjs",
"devDependencies": {
"husky": "^9.1.7",
"lerna": "^9.0.4",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.4.0",
"syncpack": "^14.0.0"
}
}