-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 2.99 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "flama-site",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/vortico/flama-site.git"
},
"author": "José Antonio Perdiguero López",
"license": "MIT",
"bugs": {
"url": "https://github.com/vortico/flama-site/issues"
},
"homepage": "https://flama.dev",
"scripts": {
"start": "npm run dev",
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"serve": "next start",
"lint": "next lint",
"lint:fix": "npm run lint -- --fix",
"format": "prettier . --write --ignore-path .gitignore --ignore-unknown",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@docsearch/react": "3.5.2",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@tabler/icons-react": "^2.5.0",
"@types/mdx": "^2.0.10",
"framer-motion": "^11.11.11",
"globby": "^13.2.2",
"next": "^14.2.0",
"next-mdx-remote": "^5.0.0",
"next-pwa": "^5.6.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "^1.5.0",
"rehype-code-titles": "^1.1.0",
"rehype-katex": "^7.0.0",
"rehype-slug": "^5.1.0",
"rehype-toc": "^3.0.2",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-sectionize": "^2.0.0",
"shiki": "^1.22.2",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.8.2",
"@types/react": "18.2.25",
"@types/react-dom": "^18.2.10",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.16",
"commitlint": "^17.7.2",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"typescript": "^5.2.2"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 120,
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"importOrder": [
"^react$",
"",
"<THIRD_PARTY_MODULES>",
"",
"^@/(.*)$",
"",
"^[.]"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"prettier"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"ignoreRestSiblings": true
}
],
"@typescript-eslint/no-explicit-any": [
"error",
{
"ignoreRestArgs": true
}
]
}
}
}