-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
53 lines (53 loc) · 1.88 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
{
"version": "0.0.0",
"author": "03b8 <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build:fractures": "pnpm run --filter @heliosgraphics/fractures build",
"build:icons": "pnpm run --filter @heliosgraphics/icons build",
"export:icons": "pnpm run --filter @heliosgraphics/icons export",
"prettier:write": "prettier --no-semi --use-tabs --write ./packages/**",
"pub:fractures": "pnpm publish --access public --filter @heliosgraphics/fractures",
"pub:icons": "pnpm publish --access public --filter @heliosgraphics/icons",
"pub:ui": "pnpm publish --access public --filter @heliosgraphics/ui",
"pub:utils": "pnpm publish --access public --filter @heliosgraphics/utils",
"test": "NODE_ENV=test vitest run",
"test:fractures": "NODE_ENV=test vitest run",
"test:bench": "pnpm run --filter @heliosgraphics/benchmarks bench",
"test:coverage": "NODE_ENV=test vitest run --coverage",
"test:u": "NODE_ENV=test vitest run --update",
"test:update": "NODE_ENV=test vitest run --update",
"test:watch": "NODE_ENV=test vitest",
"ts:watch": "tsc --noEmit --incremental --watch --project ./packages/workshop/tsconfig.json"
},
"workspaces": [
"packages/*"
],
"dependencies": {},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.1.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"jsdom": "^25.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
},
"trustedDependencies": [
"esbuild"
]
}