-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 928 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
37
38
39
40
{
"name": "httpstatus.is",
"version": "1.0.0",
"description": "A simple service to return specific HTTP status codes",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/helloapihq/httpstatus.git"
},
"keywords": [
"http",
"api",
"rest",
"request",
"requests"
],
"author": "Hello API",
"license": "LGPLv3",
"bugs": {
"url": "https://github.com/helloapihq/httpstatus/issues"
},
"homepage": "https://httpstatus.is",
"dependencies": {
"dotenv": "^16.4.0",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}