-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
82 lines (82 loc) · 2.72 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
{
"name": "@sku-private/monorepo",
"private": true,
"scripts": {
"postinstall": "node ./postinstall.js",
"prepare": "husky",
"lint": "pnpm run '/^lint:.*/'",
"lint:eslint": "eslint --cache --cache-location 'node_modules/.cache/eslint/.eslintcache' .",
"lint:prettier": "prettier --cache --list-different .",
"lint:tsc": "tsc",
"check": "pnpm install --frozen-lockfile && echo 'Ignore paths from lint-staged'",
"test": "SKU_TELEMETRY=false SKU_DISABLE_CACHE=true OPEN_TAB=false jest --verbose",
"test:sku-init": "SKU_TELEMETRY=false SKU_DISABLE_CACHE=true OPEN_TAB=false jest --verbose --config=jest.config.sku-init.js",
"test:update": "pnpm run test -u && pnpm --filter @sku-fixtures/braid-design-system exec sku test -u",
"setup-test-hosts": "node test-utils/setupTestHosts",
"start:docs": "pnpm run --filter @sku-private/docs start",
"format": "prettier --cache --write . && eslint --cache --cache-location 'node_modules/.cache/eslint/.eslintcache' --fix .",
"deploy-docs": "pnpm run --filter @sku-private/docs deploy",
"release": "pnpm deploy-docs && changeset publish",
"version": "changeset version && pnpm install --lockfile-only"
},
"lint-staged": {
"+(package.json|pnpm-lock.yaml)": [
"pnpm run check"
],
"**/*.js": [
"eslint --cache --fix"
],
"**/*.{js,ts,tsx,md,css}": [
"prettier --cache --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/sku.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/sku/issues"
},
"homepage": "https://github.com/seek-oss/sku#readme",
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@changesets/get-github-info": "^0.6.0",
"@sku-private/test-utils": "workspace:*",
"@swc/core": "^1.3.84",
"@swc/jest": "^0.2.29",
"@tsconfig/node-lts": "^18.12.3",
"@types/jest": "^29.0.0",
"@types/node": "^18.19.31",
"@types/prettier": "^2.7.3",
"debug": "^4.3.1",
"dedent": "^1.5.1",
"eslint": "^8.56.0",
"eslint-config-seek": "^13.0.0",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-unicorn": "^54.0.0",
"gh-pages": "^3.1.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-puppeteer": "^10.0.1",
"jest-watch-typeahead": "^2.2.0",
"lint-staged": "^11.1.1",
"prettier": "^2.8.8",
"puppeteer": "^22.10.0",
"renovate-config-seek": "^0.4.0",
"typescript": "~5.6.0"
},
"engines": {
"node": ">=18.20.0"
},
"volta": {
"node": "18.20.1",
"pnpm": "9.6.0"
},
"packageManager": "pnpm@9.6.0",
"skuSkipPostInstall": true,
"skuSkipConfigure": true,
"skuSkipValidatePeerDeps": true
}