-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 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
{
"name": "taskmotion",
"version": "1.0.0",
"description": "This is a web application for managing tasks",
"main": "index.js",
"scripts": {
"dev": "pnpm --filter '**' dev",
"client:deploy": "cd client && pnpm test && pnpm build && pnpm release",
"server:deploy": "cd server && pnpm release",
"lint": "eslint . --ext ts,tsx --no-ignore --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.6.1",
"zod": "^3.23.6"
},
"keywords": [
"task",
"management",
"web",
"application"
],
"author": "joncodeofficial",
"license": "MIT",
"packageManager": "pnpm@10.8.1"
}