-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.52 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
{
"name": "@andrezero/website",
"version": "3.2.0",
"description": "André Torgal's website",
"author": "André Torgal <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"astro": "astro",
"dev": "astro dev",
"lint": "prettier . -c && eslint .",
"lint:fix": "prettier . -c --write && eslint .",
"build": "astro build",
"test": "playwright test",
"test:install": "playwright install --with-deps",
"test:report": "export REPORT=true && playwright test",
"test:serve": "playwright show-report",
"preview": "astro preview",
"start": "astro build && astro preview",
"pre-deploy:staging": "cp dist/_staging.robots..txt dist/robots.txt",
"pre-deploy:production": "echo ."
},
"dependencies": {
"@altano/tiny-async-pool": "^3.0.1",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "4.0.3",
"@astrojs/sitemap": "3.2.1",
"@astropub/md": "1.0.0",
"@fec/remark-a11y-emoji": "^4.0.2",
"astro": "5.1.3",
"escape-html": "1.0.3",
"estree-util-visit": "^1.2.1",
"github-slugger": "^2.0.0",
"hast": "^1.0.0",
"kleur": "^4.1.5",
"lucide-astro": "^0.471.0",
"m2dx-utils": "^0.2.5",
"mdast": "^3.0.0",
"mdast-util-to-string": "^3.1.0",
"mime": "^3.0.0",
"rehype-format": "^5.0.1",
"rehype-stringify": "^10.0.1",
"remark-emoji": "^3.0.2",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^10.0.2",
"remark-unwrap-images": "^3.0.1",
"sanitize-html": "^2.10.0",
"sharp": "^0.33.5",
"unified": "^11.0.5",
"unist-util-visit": "^4.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@playwright/test": "^1.29.1",
"@types/escape-html": "^1.0.2",
"@types/github-slugger": "^2.0.0",
"@types/mime": "^3.0.1",
"@types/sanitize-html": "^2.8.1",
"@types/sharp": "^0.31.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"browserslist": "^4.21.4",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-astro": "^0.21.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.5.0",
"lefthook": "^1.2.6",
"prettier": "^2.8.1",
"prettier-plugin-astro": "^0.7.2"
}
}