-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 956 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
{
"name": "tuparada",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Vicente015 <[email protected]>",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix --format=pretty --ext .js,.astro,.ts,.tsx,.jsx,.cjs .",
"dev": "pnpm run --recursive --parallel dev",
"start:server": "pnpm --filter ./apps/server/ run start",
"build:client": "pnpm --filter ./apps/client/ run build",
"build:server": "pnpm --filter ./apps/server/ run build"
},
"engines": {
"node": "20",
"pnpm": "9"
},
"packageManager": "[email protected]",
"dependencies": {},
"devDependencies": {
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-sort": "^2.12.0",
"typescript": "~5.6.2"
}
}