-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"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 ./src/apps/photo-companion run build",
"preview": "pnpm --filter ./src/apps/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 src/**/*.css",
"lint:types": "pnpm --parallel run lint:types",
"eslint:inspector": "eslint --inspect-config"
},
"keywords": [
"photography",
"scheduler",
"web-application"
],
"devDependencies": {
"@eslint/js": "^9.8.0",
"@stylistic/stylelint-plugin": "^2.1.2",
"@types/node": "^20.14.12",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^9.8.0",
"eslint-plugin-perfectionist": "^3.0.0",
"eslint-plugin-solid": "^0.14.1",
"postcss-nesting": "^12.1.5",
"stylelint": "^16.7.0",
"stylelint-config-standard": "^36.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0",
"vite": "^5.3.5",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.0.4"
},
"workspaces": [
"src/apps/*",
"src/core/*",
"src/packages/*"
],
"packageManager": "[email protected]"
}