-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"name": "scacit",
"version": "0.1.0",
"description": "A modern static site generator",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"scacit": "dist/cli.js"
},
"scripts": {
"build": "tsc && npm run copy-templates",
"watch": "tsc -w",
"test": "vitest",
"prepare": "npm run build",
"copy-templates": "cpx \"src/templates/**/*\" dist/templates"
},
"dependencies": {
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"express": "^4.21.2",
"front-matter": "^4.0.2",
"fs-extra": "^11.1.1",
"glob": "^11.0.1",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.2.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0"
},
"devDependencies": {
"@akiravoid/markdown-it-ins": "^1.0.2",
"@akiravoid/markdown-it-mark": "^1.0.2",
"@akiravoid/markdown-it-sub": "^1.0.3",
"@akiravoid/markdown-it-sup": "^1.0.2",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.1",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.10",
"@types/markdown-it-emoji": "^3.0.1",
"@types/markdown-it-footnote": "^3.0.4",
"@types/node": "^22.12.0",
"@types/supertest": "^6.0.2",
"cpx": "^1.5.0",
"esbuild": "^0.24.2",
"supertest": "^7.0.0",
"typescript": "^5.1.6",
"vitest": "^3.0.4"
}
}