-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.26 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
{
"name": "cut0-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm -C workspaces/app dev",
"build": "pnpm -C workspaces/app build",
"preview": "pnpm -C workspaces/app preview",
"start": "pnpm -C workspaces/server serve",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint --ext ts,tsx,js,astro ./",
"lint:prettier": "prettier --ignore-path .prettierignore --check '**/*.{js,ts,tsx,css,astro}'",
"format": "run-s format:eslint format:prettier",
"format:eslint": "eslint --fix --ext ts,tsx,js,astro .",
"format:prettier": "prettier --ignore-path .prettierignore --write '**/*.{js,ts,tsx,css,astro}'",
"typecheck": "pnpm -C workspaces/app typecheck",
"release": "pnpm -C workspaces/scripts release"
},
"dependencies": {
"tsx": "^4.7.0"
},
"devDependencies": {
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-astro": "^0.23.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-astro": "^0.8.0",
"typescript": "4.6.4"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.16.1"
}
}