-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.44 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.44 KB
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
{
"name": "oh-my-logo-generator",
"version": "1.0.0",
"description": "Generator of logo using the library oh-my-logo",
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"api:dev": "pnpm --filter @omlg/api dev",
"dev": "concurrently 'pnpm run api:dev' 'pnpm run web:dev'",
"format": "prettier --write .",
"lint": "eslint --fix .",
"prepare": "husky",
"web:deploy": "pnpm --filter @omlg/web build && gh-pages -d ./apps/web/dist",
"web:dev": "pnpm --filter @omlg/web dev",
"web:lint": "pnpm --filter @omlg/web lint"
},
"lint-staged": {
"*.{js,ts,json,css,md,scss,astro}": "prettier --write",
"*.{js,ts,astro}": "eslint --fix"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.10.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsconfig/node-ts": "^23.6.1",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^24.2.1",
"concurrently": "^9.2.1",
"eslint": "^9.15.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-tsdoc": "^0.4.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"neostandard": "^0.11.7",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-packagejson": "^2.5.19",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}