-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.88 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "cv",
"author": {
"name": "Dmitrii Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
},
"contributors": [
{
"name": "Dmitry (Di) Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
}
],
"version": "1.0.0",
"private": true,
"npmClient": "pnpm",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.x",
"npm": ">=10.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"clean": "find . -name node_modules -o -name tsconfig.tsbuildinfo -o -name pnpm-lock.yaml -o -name .next -o -name .turbo -o -name dist -type f -prune -type d -prune | xargs rm -rf",
"web:dev": "turbo run dev --filter=\"@cv/web\"",
"web:build": "turbo run build --filter=\"@cv/web\"",
"web:start": "turbo run start --filter=\"@cv/web\"",
"lint": "turbo run lint",
"type": "turbo run type",
"tsc:clean": "turbo run tsc:clean",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern --write \"**/*.{js,jsx,ts,tsx,json,md,xml,svg}\"",
"format": "pnpm prettier && pnpm lint && pnpm type",
"bootstrap": "pnpm install && pnpm format",
"lt": "lt --port 3000 --subdomain blogs",
"prepare": "husky install"
},
"dependencies": {
"turbo": "2.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "15.0.3",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"eslint-config-next": "15.0.3",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.3.1",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-tailwindcss": "0.6.9",
"husky": "9.1.7",
"localtunnel": "2.0.2",
"eslint-plugin-unused-imports": "4.1.4"
}
}