-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"private": true,
"name": "fiq",
"type": "module",
"scripts": {
"build": "turbo build",
"build:apps": "turbo build --filter=./apps/*",
"build:packages": "turbo build --filter=./packages/*",
"check": "turbo lint && turbo type-check && pnpm format:check && pnpm check:spelling && pnpm check:knip",
"check:knip": "VITE_CJS_IGNORE_WARNING=true dotenv -e .env.local -- knip",
"check:npm": "pnpm dlx npm-check-updates --deep --interactive --format group",
"check:spelling": "cspell --show-context --show-suggestions",
"clean": "turbo clean && rm -rf .turbo coverage",
"commit": "cz",
"db:check": "turbo db:check",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:push": "turbo db:push",
"db:seed": "turbo db:seed",
"db:studio": "turbo db:studio",
"dev": "turbo dev",
"dev:packages": "turbo dev --filter=./packages/*",
"format:check": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"format:write": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore .",
"preinstall": "npx --yes only-allow pnpm",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix && pnpm format:write && tsx scripts/fix-cspell.ts",
"prepare": "husky && pnpm build:packages",
"release": "changeset publish",
"test:e2e": "turbo test:e2e",
"test:e2e:ui": "turbo test:e2e:ui",
"test:unit": "vitest run",
"test:unit:coverage": "vitest --coverage --ui",
"test:unit:ui": "vitest --ui",
"type-check": "turbo type-check",
"version": "changeset version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"dependencies": {
"katex": "^0.16.11",
"next-mdx-remote": "^5.0.0",
"react-katex": "^3.0.1",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@cspell/dict-fullstack": "^3.1.8",
"@cspell/dict-npm": "^5.0.16",
"@cspell/dict-software-terms": "^3.4.6",
"@playwright/test": "^1.44.1",
"@tszhong0411/eslint-config": "workspace:*",
"@tszhong0411/prettier-config": "workspace:*",
"@tszhong0411/tsconfig": "workspace:*",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cspell": "^8.9.0",
"cz-git": "^1.9.3",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"knip": "^5.18.2",
"lint-staged": "^15.2.6",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"tsx": "^4.15.2",
"turbo": "^2.0.3",
"typescript": "5.5.1-rc",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20.11.0",
"pnpm": ">=9"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74"
}