-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.05 KB
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
{
"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",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"jest": "^29.6.2",
"nodemon": "^3.1.10",
"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"
}
}