-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1020 Bytes
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": "thesis-repo",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo clean && rm -rf node_modules",
"storybook": "pnpm --filter @thesis/storybook dev",
"docs": "pnpm --filter @thesis/docs dev",
"backend": "pnpm --filter @thesis/backend dev",
"e2e": "playwright test --config e2e/playwright.config.ts",
"e2e:headed": "playwright test --config e2e/playwright.config.ts --headed"
},
"devDependencies": {
"@playwright/test": "^1.50",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.1.0",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.53.1"
},
"engines": {
"node": ">=18.0.0"
}
}