-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.2 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
39
40
41
42
43
44
{
"name": "posts",
"version": "1.0.0",
"description": "Posts.cv App Clone",
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@posts/web",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"lint:fix": "eslint . --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0 .",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"keywords": [],
"author": "thisissteven",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"turbo": "^1.11.2",
"typescript": "^5.3.3",
"husky": "^8.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}