-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.39 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
{
"private": true,
"name": "ayasofyazilim-core-project",
"scripts": {
"build": "turbo build",
"build:web": "turbo build --filter web",
"start": "turbo start",
"start:web": "cd apps/web && start /B pnpm run start && npx --yes wait-on http://127.0.0.1:3000",
"dev:all": "turbo dev",
"dev:apps": "turbo dev --filter web --filter public_web --filter docs",
"dev": "turbo dev --filter web",
"pub": "turbo dev --filter public_web",
"docs": "turbo dev --filter docs",
"lint:web": "turbo lint --filter web -- --fix",
"format:web": "prettier --write \"apps/web/**/*.{ts,tsx}\"",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"precommit": "turbo lint && turbo type-check",
"precommit:web": "npm run format:web && turbo lint --filter web && turbo type-check --filter web",
"precommit:lintstaged": "cd apps/web && npx lint-staged",
"unused": "npx knip"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"@repo/typescript-config": "workspace:*",
"eslint": "8.57.0",
"husky": "^8.0.3",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.11",
"turbo": "^2.1.2"
},
"packageManager": "pnpm@9.1.2",
"engines": {
"node": ">=18"
},
"dependencies": {
"playwright": "^1.47.1"
}
}