-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "versatiles-website",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsx src/cms.ts",
"check": "npm run lint && npm run build",
"dev": "tsx src/cms.ts watch serve",
"lint": "eslint --color .",
"preview": "tsx src/cms.ts serve",
"upgrade": "npm-check-updates -u && rm -f package-lock.json; rm -rf node_modules; npm i && npm update",
"watch": "tsx src/cms.ts watch"
},
"author": "Michael Kreil <[email protected]>",
"license": "MIT",
"type": "module",
"dependencies": {
"color": "^4.2.3",
"csso": "^5.0.5",
"express": "^4.21.1",
"handlebars": "^4.7.8",
"jsdom": "^25.0.1",
"less": "^4.2.0",
"rehype-highlight": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"unified": "^11.0.5",
"vfile-matter": "^5.0.0"
},
"devDependencies": {
"@types/color": "^4.2.0",
"@types/csso": "^5.0.4",
"@types/express": "^5.0.0",
"@types/jsdom": "^21.1.7",
"@types/less": "^3.0.6",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.14.0",
"npm-check-updates": "^17.1.9",
"typescript-eslint": "^8.12.2"
}
}