-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "factory-js.github.io",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "serve out",
"type-check": "tsc --noEmit",
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx,js,jsx,cjs,mjs}'",
"clean": "rm -rf node_modules .turbo .next out",
"format": "prettier --check .",
"format:fix": "prettier -w .",
"secretlint": "secretlint --secretlintignore .gitignore --maskSecrets '**/*'",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.1.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@shikijs/transformers": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^10.0.0",
"next": "^14.2.4",
"nextra": "^3.0.0",
"nextra-theme-docs": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.2.1",
"shiki": "^3.0.0"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "18.19.68",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.19",
"eslint": "9.17.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.0",
"postcss": "^8.4.39",
"prettier": "^3.2.5",
"secretlint": "^9.0.0",
"serve": "^14.2.3",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": ">=18",
"pnpm": "^9.0.0"
},
"packageManager": "[email protected]"
}