-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "@kosko/monorepo",
"version": "0.0.1",
"private": true,
"homepage": "https://kosko.dev",
"repository": {
"type": "git",
"url": "https://github.com/tommy351/kosko.git"
},
"author": "Tommy Chen <tommy351@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint . --ext .js,.ts,.jsx,.tsx,.cjs,.mjs,.cts,.mts",
"lint:syncpack": "syncpack list-mismatches --workspace false",
"build": "turbo run build --filter=./{internal,packages,plugins}/*",
"clean": "rm -rf internal/*/dist packages/*/dist plugins/*/dist",
"watch": "npm run build -- --watch",
"test": "npm-run-all test:*",
"test:unit": "cross-env ESM_IMPORT_DISABLED=1 jest",
"test:integration": "jest --config jest.integration.config.ts",
"test:browser": "jest --config integration/browser/jest.config.js",
"prepare": "husky install",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,cjs,mjs,cts,mts}": "eslint --fix"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@tsconfig/node18": "^18.2.2",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^29.0.3",
"@types/jest-environment-puppeteer": "^5.0.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^51.0.1",
"execa": "^5.1.1",
"expect-puppeteer": "^10.1.4",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-extended": "^4.0.2",
"jest-puppeteer": "^10.1.4",
"kubernetes-models": "^4.1.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"puppeteer": "^23.6.1",
"syncpack": "^8.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.2",
"turbo": "^2.2.3",
"typescript": "^5.3.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"syncpack": {
"peer": false,
"source": [
"package.json",
"internal/*/package.json",
"packages/*/package.json"
]
},
"packageManager": "pnpm@9.1.1"
}