-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "photo-companion-monorepo",
"description": "Minimalistic photography toolkit progressive web application.",
"private": true,
"type": "module",
"author": "Eric Rovell",
"license": "MIT",
"homepage": "https://github.com/EricRovell/photo-companion#readme",
"scripts": {
"build": "pnpm --filter ./packages/photo-companion run build",
"preview": "pnpm --filter ./packages/photo-companion run preview",
"clean": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"dev": "pnpm --filter photo-companion run dev",
"test:unit": "vitest run",
"test:unit:ci": "vitest run --coverage",
"lint": "pnpm lint:code && pnpm lint:types && pnpm lint:styles",
"lint:code": "eslint",
"lint:styles": "npx stylelint packages/**/*.css",
"lint:types": "pnpm --parallel run lint:types",
"eslint:inspector": "eslint --inspect-config"
},
"keywords": [
"photography",
"scheduler",
"web-application"
],
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-solid": "^0.14.5",
"postcss-nesting": "^13.0.1",
"rollup-plugin-visualizer": "^5.14.0",
"stylelint": "^16.13.0",
"stylelint-config-standard": "^37.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "catalog:default",
"vite-plugin-solid": "^2.11.0",
"vitest": "^2.1.8"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}