-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "node-logging",
"version": "1.0.0",
"description": "Nodejs app that has an API to return logs",
"main": "index.js",
"scripts": {
"dev": "PORT=3000 nodemon src/app.ts",
"start": "pm2-runtime dist/app.js",
"build": "tsc -p tsconfig.json",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"start:lambda": "netlify-lambda serve src/lambda",
"build:lambda": "netlify-lambda build src/lambda"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jprivillaso/node-logging.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jprivillaso/node-logging/issues"
},
"homepage": "https://github.com/jprivillaso/node-logging#readme",
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.9",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
}
}