-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "css-components-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"generate:css": "npx css-components --css \"src/components/**/*.css\" --output styles.ts",
"depcheck": "npx npm-check --update",
"lint": "npm-run-all check-types lint:js",
"lint:js": "next lint",
"fix": "next lint --fix",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@phantomstudios/css-components": "^0.4.0",
"@phntms/react-share": "^1.0.1",
"@types/node": "^25.1.0",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.2.3",
"eslint-config-next": "^16.0.6",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"mdx-bundler": "^10.0.2",
"next": "^16.1.6",
"next-sitemap": "^4.2.3",
"react": "^19.1.2",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"react-syntax-highlighter": "^15.6.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "^15.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4"
},
"engines": {
"node": "22.x"
},
"overrides": {
"react-syntax-highlighter": {
"prismjs": "1.30.0"
}
}
}