forked from typehero/typehero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.59 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
58
59
60
61
62
63
{
"name": "typehero",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo build",
"checks": "turbo format lint typecheck --continue",
"checks:fix": "turbo format:fix lint:fix typecheck --continue --force",
"clean": "turbo clean && rm -rf node_modules && rm -rf .turbo",
"check:solutions": "tsx ./challenges/validate.ts",
"db:push": "turbo db:push",
"db:reset": "turbo db:reset",
"db:seed": "turbo db:seed",
"db:prod:seed": "turbo db:reset && turbo db:prod:seed",
"db:studio": "turbo db:studio",
"dev": "turbo dev --filter=!@repo/emails --concurrency=1000",
"dev:email": "turbo dev --filter @repo/emails",
"dl-git": "turbo dl-git",
"dl-monaco:force": "turbo dl-monaco",
"format": "prettier . \"!./apps/**\" \"!./packages/**\" \"!./tooling/**\" \"!challenges/**/tests.ts\" --check --cache --cache-location=\"node_modules/.cache/prettiercache\"",
"format:fix": "prettier . \"!./apps/**\" \"!./packages/**\" \"!./tooling/**\" \"!challenges/**/tests.ts\" --write --cache --cache-location=\"node_modules/.cache/prettiercache\" --log-level=warn",
"lint": "eslint . --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"lint:markdown": "markdownlint-cli2 \"challenges/**/*.md\" \"#**/node_modules\" && cspell challenges/** --no-progress",
"lint:markdown:validate": "tsx challenges/validate.ts",
"lint:fix": "eslint . --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"refresh": "turbo db:reset db:seed --concurrency=1",
"test:e2e": "turbo test:e2e",
"test:e2e:install": "playwright install",
"test:e2e:ui": "turbo test:e2e:ui",
"test:e2e:inspector": "turbo test:e2e:inspector",
"tunnel": "cloudflared tunnel --url http://localhost:3000",
"typecheck": "turbo typecheck --continue"
},
"devDependencies": {
"ajv": "^8.12.0",
"cspell": "^7.3.8",
"markdownlint-cli2": "^0.10.0",
"picocolors": "^1.0.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tsx": "^3.14.0",
"turbo": "^1.10.16",
"type-testing": "0.2.0",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@auth/core": "0.19.0"
},
"peerDependencyRules": {
"ignoreMissing": [
"monaco-editor"
]
},
"patchedDependencies": {
"@monaco-editor/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"@vercel/[email protected]": "patches/@[email protected]"
}
}
}