-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1004 Bytes
/
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
{
"name": "askoufis.github.io",
"private": true,
"version": "0.0.0",
"type": "module",
"repository": {
"url": "https://github.com/askoufis/askoufis.github.io"
},
"scripts": {
"build:site": "pnpm --filter 'site' build",
"dev": "pnpm --filter 'site' dev",
"preview": "pnpm --filter 'site' preview",
"deploy:site": "pnpm --filter 'site' run deploy",
"eslint": "eslint --cache .",
"lint": "pnpm --filter 'site' check && pnpm run tsc && pnpm run eslint && pnpm format:check",
"format": "eslint --cache . --fix && prettier --cache --write . '**/*.astro'",
"format:check": "prettier --cache --list-different . '**/*.astro'",
"test": "echo 'no tests yet'",
"tsc": "tsc"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-seek": "^11.3.1",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.11.0",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.7.1",
"volta": {
"node": "18.17.0",
"pnpm": "8.7.1"
}
}