-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 939 Bytes
/
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
{
"name": "rhodesapi",
"version": "1.5.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.ts",
"start": "node dist/server.js",
"build": "tsc",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"preinstall": "rm -rf web",
"deploy": "heroku create -a rhodesapi && git add . && git commit -m Heroku && git push heroku main"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/rate-limit": "^10.1.1",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"ioredis": "^5.4.1",
"mongoose": "^8.8.0",
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/node": "^22.8.6",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}