-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.46 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
{
"name": "bundle-stats-plugin",
"version": "0.0.0",
"description": "Codecov Bundler Plugins Monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r --filter='./packages/*' run build",
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"clean": "pnpm -r --filter='./packages/*' clean && rm -rf node_modules",
"type-check": "pnpm -r --filter='./packages/*' --filter='./integration-tests' run type-check",
"lint": "pnpm -r --filter='./packages/*' lint",
"lint:fix": "pnpm -r --filter='./packages/*' lint:fix",
"format": "pnpm -r format && prettier --write '*.{cjs,json}' --ignore-unknown --no-error-on-unmatched-pattern",
"format:check": "pnpm -r --filter='./packages/*' format:check && prettier --check '*.{cjs,json}' --ignore-unknown --no-error-on-unmatched-pattern",
"test:unit": "pnpm -r --filter='./packages/*' run test:unit",
"test:unit:watch": "pnpm -r --filter='./packages/*' run test:unit:watch",
"test:unit:update": "pnpm -r --filter='./packages/*' run test:unit:update",
"test:unit:ci": "pnpm -r --filter='./packages/*' run test:unit:ci",
"test:e2e": "pnpm -r --filter='./integration-tests' run test:e2e",
"test:e2e:update": "pnpm -r --filter='./integration-tests' run test:e2e:update",
"prepare": "husky install",
"changeset:add": "pnpm changeset",
"changeset:consume": "pnpm changeset version",
"changeset:publish": "pnpm run build && pnpm changeset publish",
"generate:typedoc": "typedoc --options ./typedoc.json",
"generate:typedoc:packages": "pnpm -r --filter='./packages/*' run generate:typedoc"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-isaacscript": "^3.12.2",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"typedoc": "^0.25.12",
"typescript": "^5.3.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^1.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md,json}": [
"prettier --write"
]
},
"volta": {
"node": "20.9.0"
},
"engines": {
"node": ">=18.0.0"
}
}