-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
70 lines (70 loc) · 2.15 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
{
"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 test",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run --run",
"test:watch": "vitest --watch",
"test:ci": "npm run test",
"types": "tsc",
"purge": "node scripts/purgecss.mjs",
"dev": "astro dev --host=0.0.0.0",
"build": "astro build",
"build:prod": "npm run build && npm run purge",
"preview": "astro preview --host=0.0.0.0"
},
"dependencies": {
"@astrojs/mdx": "^3.1.9",
"@astrojs/react": "^3.6.2",
"@astrojs/sitemap": "^3.2.1",
"@docsearch/react": "^3.6.3",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/react": "^3.1.0",
"astro": "^4.16.8",
"astro-expressive-code": "^0.38.0",
"astro-seo": "^0.8.4",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"mdx-mermaid": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-external-link": "^2.3.1",
"reactstrap": "^9.2.3",
"typed.js": "^2.1.0"
},
"devDependencies": {
"@shlinkio/eslint-config-js-coding-standard": "~3.2.1",
"@stylistic/eslint-plugin": "^2.10.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"eslint": "^9.14.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^25.0.1",
"purgecss": "^6.0.0",
"sass": "^1.80.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4"
}
}