-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 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
65
66
{
"name": "shlink-website",
"description": "Shlink project website",
"author": "Alejandro Celaya Alastrué",
"readmeFilename": "README.md",
"private": false,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/shlinkio/shlink.io"
},
"scripts": {
"lint": "eslint src scripts *.config.{js,ts}",
"lint:fix": "node --run lint -- --fix",
"types": "tsc",
"purge": "node scripts/purgecss.js",
"dev": "astro dev --host=0.0.0.0",
"build": "astro build",
"build:prod": "node --run build && node --run purge",
"preview": "astro preview --host=0.0.0.0"
},
"dependencies": {
"@astrojs/mdx": "^5.0.2",
"@astrojs/react": "^5.0.1",
"@astrojs/sitemap": "^3.7.1",
"@docsearch/react": "^4.6.0",
"@fortawesome/fontawesome-free": "^7.2.0",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.0",
"@mdx-js/react": "^3.1.1",
"astro": "^6.0.8",
"astro-expressive-code": "^0.41.7",
"astro-seo": "^1.1.0",
"bootstrap": "^5.3.8",
"clsx": "^2.1.1",
"mdx-mermaid": "^2.0.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-external-link": "^2.6.1",
"typed.js": "^3.0.0"
},
"devDependencies": {
"@shlinkio/eslint-config-js-coding-standard": "~3.7.0",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/trusted-types": "^2.0.7",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"purgecss": "^8.0.0",
"sass": "^1.98.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}