forked from tus/tus.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"name": "tus-io",
"version": "1.0.0",
"main": "astro.config.mjs",
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "yarn inject && astro build",
"preview": "astro preview",
"lint": "concurrently \"npm:lint:*\"",
"lint:astro": "astro check",
"lint:css": "stylelint \"src/**/*.{astro,css}\"",
"lint:js": "eslint .",
"lint:ts": "tsc",
"lint:fmt": "prettier --check .",
"format": "prettier --write .",
"inject": "concurrently \"npm:inject:*\"",
"inject:protocol": "scripts/inject-protocol.sh && prettier --write ."
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.1.3",
"@types/eslint": "^8.44.2",
"@types/lodash-es": "^4.17.9",
"@types/mapbox__rehype-prism": "^0.8.0",
"@types/node": "^18.17.14",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"autoprefixer": "^10.4.15",
"concurrently": "^8.2.1",
"cssnano": "^6.0.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^9.1.3",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"stylelint": "^15.10.3",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-standard": "^34.0.0",
"stylelint-plugin-logical-css": "^0.13.2",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1"
},
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/preact": "^2.2.2",
"@astrojs/rss": "^2.4.4",
"@astrojs/sitemap": "^2.0.1",
"@octokit/core": "^5.0.0",
"@octokit/plugin-paginate-rest": "^8.0.0",
"@octokit/plugin-rest-endpoint-methods": "^9.0.0",
"@octokit/plugin-retry": "^6.0.0",
"@preact/signals": "^1.2.1",
"astro": "^2.10.7",
"clsx": "^2.0.0",
"cross-fetch": "^4.0.0",
"lodash-es": "^4.17.21",
"modern-normalize": "^2.0.0",
"preact": "^10.17.1",
"pretty-bytes": "^6.1.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark-emoji": "^4.0.0",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-toc": "^8.0.1",
"s-ago": "^2.2.0",
"sharp": "^0.32.6",
"timeago.js": "^4.0.2",
"ts-is-present": "^1.2.2",
"tus-js-client": "^3.1.1",
"unified": "^10.1.2"
},
"resolutions": {
"react": "npm:@preact/compat@latest",
"react-dom": "npm:@preact/compat@latest"
}
}