-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "philippines-emergency-hotlines-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"generate-source-files": "ts-node src/scripts/generate-source-files.ts",
"update-parent-source": "ts-node src/scripts/update-parent-source.ts"
},
"keywords": [
"api",
"philippines",
"emergency",
"hotlines"
],
"author": "Waffen Sultan Ampatua",
"license": "ISC",
"description": "Easily retrieve critical emergency hotlines information in the Philippines with just one API call.",
"dependencies": {
"@express-rate-limit/tsconfig": "^1.0.2",
"@types/express-rate-limit": "^5.1.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}