-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "untidy",
"private": true,
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "tsx playground.ts",
"format": "prettier --cache -w .",
"lint": "eslint . --cache --cache-location \"./node_modules/.cache/eslint/\"",
"clean": "rm -rf node_modules",
"test": "vitest",
"test:coverage": "vitest --coverage",
"build": "pnpm --filter mobygames build",
"build:docs": "pnpm --filter mobygames-docs build",
"publish-packages": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-untidy": "workspace:^",
"msw": "^2.3.1",
"prettier": "^3.3.0",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": "^20.0.0",
"pnpm": ">=8"
},
"pnpm": {
"overrides": {
"esbuild": "0.21.4"
}
},
"packageManager": "[email protected]+sha256.30a1801ac4e723779efed13a21f4c39f9eb6c9fbb4ced101bce06b422593d7c9"
}