-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 KB
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
{
"name": "createx-interface",
"version": "1.0.0",
"private": true,
"description": "Next.js-based user interface for createx.rocks.",
"keywords": [
"frontend",
"interface",
"nextjs",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pcaversaccio/createx.git"
},
"homepage": "https://github.com/pcaversaccio/createx/tree/main/interface#readme",
"bugs": {
"url": "https://github.com/pcaversaccio/createx/issues"
},
"author": "pcaversaccio (https://pcaversaccio.com), Matt Solomon (https://mattsolomon.dev)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "pnpm build && next start",
"prettier:check": "prettier -c \"**/*.{js,mjs,ts,tsx,css,md,json,yml,yaml}\"",
"prettier:fix": "prettier -w \"**/*.{js,mjs,ts,tsx,css,md,json,yml,yaml}\"",
"lint:check": "pnpm prettier:check && eslint .",
"lint:fix": "pnpm prettier:fix && eslint . --fix"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@next/eslint-plugin-next": "^16.1.6",
"@tailwindcss/postcss": "^4.2.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"next-seo": "^7.2.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}