-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 Bytes
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
{
"name": "bible-rss-reader",
"version": "1.0.0",
"description": "Bible RSS Feed Generator",
"main": "index.js",
"repository": "git@github.com:tryonlinux/bible-rss-reader.git",
"author": "Jordan Tryon <tryonlinux@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"helmet": "^7.0.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^4.5.4"
},
"scripts": {
"start": "tsc && rm -rf ./dist/public && cp -r ./public ./dist/public/ && nodemon dist/index.js",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"build": "rm -rf ./dist/ && tsc"
}
}