-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "express-server",
"version": "0.1.0",
"description": "Express Production Ready Configuration",
"main": "index.js",
"scripts": {
"test": "jest",
"test:verbose": "jest --verbose",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "./node_modules/.bin/eslint --fix .",
"babel-node": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/babel-node -- src/index.js",
"dev": "./node_modules/.bin/nodemon --inspect --exec ./node_modules/.bin/babel-node -- src/index.js",
"start": "./node_modules/.bin/run-s lint babel-node"
},
"keywords": [
"javascript",
"es6",
"express",
"nodejs",
"winston",
"datadog",
"datadog-logs",
"jsonwebtoken",
"jwt"
],
"author": "varun",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"cls-hooked": "^4.2.2",
"cls-rtracer": "^1.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"http-errors": "^1.7.3",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"swagger-ui-express": "^4.1.4",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^25.2.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.0.1",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2"
}
}