-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.78 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.78 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
{
"name": "dasher-website",
"version": "6.0.0",
"description": "Dasher - An information-efficient text-entry interface",
"type": "module",
"scripts": {
"prebuild": "node scripts/sync-related-research.mjs",
"dev": "astro dev",
"build": "astro check && astro build && pagefind --site dist",
"research:sync": "node scripts/sync-related-research.mjs",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{astro,md,css,ts,js,mjs,json}\" \"assets/**/*.scss\" \".github/**/*.{yml,yaml}\" \"README.md\" \"astro.config.mjs\" \"eslint.config.js\" \".eslintrc.js\" \"tsconfig.json\" \"package.json\"",
"format:check": "prettier --check \"src/**/*.{astro,md,css,ts,js,mjs,json}\" \"assets/**/*.scss\" \".github/**/*.{yml,yaml}\" \"README.md\" \"astro.config.mjs\" \"eslint.config.js\" \".eslintrc.js\" \"tsconfig.json\" \"package.json\"",
"typecheck": "astro check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dasher-project/dasher-web.git"
},
"author": "Dasher Project",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dasher-project/dasher-web/issues"
},
"homepage": "https://dasher.at",
"dependencies": {
"@astrojs/mdx": "^4.0.7",
"@astrojs/react": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.2",
"@eslint/js": "^9.39.3",
"astro": "^5.1.1",
"eslint": "^9.39.3",
"eslint-plugin-astro": "^1.3.1",
"globals": "^15.14.0",
"pagefind": "^1.4.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.0"
},
"overrides": {
"minimatch": "^10.2.1"
}
}