-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "typescript-static-blog",
"version": "1.1.0",
"description": "",
"main": "dist/src/main.js",
"scripts": {
"prebuild": "sass src/styles:public/css --style compressed",
"build": "tsc",
"postbuild": "node ./bin/postBuild.mjs && npm run posts:cache",
"prepare": "node ./bin/copyFromNodeModules.mjs",
"dev:backend": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --rs --inspect=0.0.0.0:9229 -- src/main.ts",
"dev:scss": "sass --watch src/styles:public/css",
"predev": "cross-env NODE_ENV=development ts-node ./src/bootstrap.ts",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:scss\"",
"prestart": "node ./dist/src/bootstrap.js",
"start": "node ./dist/src/main.js",
"test": "npm run lint",
"lint": "eslint \"./**/*.{tsx,ts,js,json}\"",
"posts": "npm run posts:cache",
"posts:cache": "node ./bin/buildPostCache.mjs",
"posts:new": "node ./bin/newPost.mjs",
"posts:import": "node ./bin/importFromWordpress.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eiskalteschatten/typescript-static-blog.git"
},
"author": "Alex Seifert",
"license": "ISC",
"bugs": {
"url": "https://github.com/eiskalteschatten/typescript-static-blog/issues"
},
"homepage": "https://github.com/eiskalteschatten/typescript-static-blog#readme",
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/html-minifier": "^4.0.5",
"@types/node": "^20.10.0",
"@types/nodemailer": "^6.4.8",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^8.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"sass": "^1.57.1",
"ts-node-dev": "^2.0.0",
"turndown": "^7.1.3",
"typescript": "^5.1.3"
},
"dependencies": {
"@fastify/autoload": "^5.7.0",
"@fastify/cookie": "^9.3.1",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/static": "^7.0.1",
"@fastify/view": "^9.0.0",
"bootstrap": "^5.3.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"fastify": "^4.11.0",
"fastify-plugin": "^4.5.1",
"html-minifier": "^4.0.0",
"marked": "^12.0.1",
"nodemailer": "^6.9.3",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"rss": "^1.2.2"
}
}