-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.11 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
{
"name": "shorts",
"type": "module",
"module": "index.ts",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --env-file ./.env --filter './apps/**' dev",
"format": "prettier --write .",
"lint": "eslint . --cache",
"sort-package-json": "sort-package-json './package.json' './apps/*/package.json' './packages/*/package.json'",
"start": "bun run --env-file ./.env --filter './apps/**' start",
"test": "bun run test:apps; bun run test:packages",
"test:apps": "bun run --filter './apps/**' test",
"test:packages": "bun run --filter './packages/**' test"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}