-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "overengine",
"version": "1.0.0",
"description": "My overengineered blog/website engine",
"main": "src/index.ts",
"repository": "[email protected]:jae/overengine.git",
"author": "Jae Lo Presti <[email protected]>",
"license": "MIT",
"dependencies": {
"@fastify/static": "^6.5.0",
"@fastify/view": "^7.1.0",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-footnote": "^3.0.0",
"@types/node": "^18.8.4",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"fastify": "4.10.2",
"fastify-graceful-shutdown": "^3.5.1",
"fastify-healthcheck": "^4.2.0",
"feed": "^4.2.2",
"ip-address": "^9.0.5",
"markdown-headers": "^0.0.1",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-plain-text": "^0.3.0",
"markdown-it-toc-done-right": "^4.2.0",
"moment": "^2.29.4",
"slugify": "^1.6.5",
"typescript": "^4.8.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/ejs": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nodemon": "^3.1.0",
"prettier": "3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tsutils": "^3.21.0",
"typescript-coverage-report": "^0.8.0"
},
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"prettier": "prettier . --check",
"prettier-fix": "prettier . --write",
"coverage": "typescript-coverage-report -t 99",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage"
}
}