-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "questions",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"test": "npx jest",
"preview": "astro preview",
"astro": "astro",
"check": "prettier --check '**/*.{css,scss,html,js,md,ts,tsx,astro,svelte}'",
"format": "prettier --write '**/*.{css,scss,html,js,md,ts,tsx,astro,svelte}'",
"move-images": "node build/move-images.js",
"prod": "npm run move-images && npm run dev"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/mdx": "^3.1.2",
"@astrojs/svelte": "^5.6.0",
"astro": "^4.11.1",
"axios": "^1.7.7",
"fs": "^0.0.1-security",
"katex": "^0.16.10",
"mathjax": "^3.2.2",
"mathjax-full": "^3.2.2",
"path": "^0.12.7",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0",
"svelte": "^4.2.18",
"typescript": "^5.5.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/katex": "^0.16.7",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-svelte": "^3.2.5",
"sass": "^1.77.6",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2"
}
}