-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 757 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 757 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
{
"name": "html-quotes-generator",
"version": "1.0.0",
"description": "Using the api 'https://api.quotable.io/random' to serve random html-snippets.",
"main": "dist/server.js",
"scripts": {
"compile": "tsc",
"start": "tsc && node ./dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[mpg] Marian P. Gajda",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"http": "0.0.1-security",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.5.10",
"typescript": "^4.2.4"
}
}