-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "roobottom-com",
"version": "2024.0.0",
"description": "Jon’s Website, built in 2024",
"main": "server.js",
"nodemonConfig": {
"watch": [
"lib",
"src",
"server.js"
],
"ext": "js,njk,json,md"
},
"scripts": {
"build": "node build",
"start": "node server",
"watch:build": "nodemon build",
"watch:server": "nodemon server",
"build-css": "node compile-less.js",
"watch-css": "node compile-less.js --watch",
"dev": "concurrently \"npm run watch-css\" \"npm run watch:build\" \"npm run watch:server\""
},
"author": "Jon Roobottom",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"chokidar": "^3.6.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"express-validator": "^7.1.0",
"fast-glob": "^3.3.2",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"he": "^1.2.0",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-div": "^1.1.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-shortcode-tag": "^1.1.0",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.14",
"number-to-words": "^1.2.4",
"nunjucks": "^3.2.4",
"sharp": "^0.33.3",
"slugify": "^1.6.6",
"smartypants": "^0.2.2"
},
"devDependencies": {
"concurrently": "^8.2.2",
"less": "^4.2.0",
"nodemon": "^3.1.0"
}
}