-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
62
63
64
65
{
"name": "log-server",
"version": "0.1.0",
"description": "A generic server that starts, logs via POST into variable, can render logs upon GET and can be stopped\"",
"main": "index.js",
"scripts": {
"start": "node index.js -f impls/resourceStrings.js",
"test": "LOG_LEVEL=test jest",
"test:watch": "LOG_LEVEL=test jest --watch",
"format": "prettier *.md *.js *.json ./src/**/*.js --write",
"lint:js": "eslint *.js ./src/**/*.js",
"lint:js:fix": "eslint *.js ./src/**/*.js --fix"
},
"keywords": [
"log",
"server",
"node",
"http"
],
"author": "Gonzalo Beviglia <gonchu.b@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"@sentry/node": "4.5.3",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"lodash.groupby": "^4.6.0",
"lodash.identity": "^3.0.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"lokijs": "^1.5.6",
"minimist": "^1.2.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-node": "^8.0.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"nodemon": "^1.18.9",
"prettier": "1.16.4",
"supertest": "^3.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}