-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.31 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
{
"name": "insight_service",
"version": "1.0.0",
"description": "Example Insight Service",
"main": "index.js",
"scripts": {
"eslint": "node_modules/.bin/eslint --cache .",
"lint": "npm run eslint && npm run prettier",
"prettier": "prettier --write \"{__{tests,mocks}__,controllers,service,utils}/**/*.js\" index.js",
"prettier-fail-on-diff": "prettier \"{__{tests,mocks}__}/**/*.js\" index.js --list-different",
"regen": "docker run --rm -v `pwd`:/local swaggerapi/swagger-codegen-cli generate -i /local/insight_service.yaml -l nodejs-server -o /local",
"start": "node index.js",
"watch": "nodemon -d 0.1 --ext 'js' --exec 'npm start'",
"test": "LOGLEVEL=SILENT jest"
},
"dependencies": {
"connect": "^3.7.0",
"lodash": "^4.17.21",
"loglevel": "^1.7.0",
"moment": "^2.29.0",
"morgan": "^1.10.0",
"response-time": "^2.3.2",
"swagger-tools": "^0.10.4"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^2.0.7",
"prettier": "^1.18.2"
},
"author": "",
"license": "ISC"
}