This repository has been archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "@banzaicloud/spotguide-nodejs-mongodb",
"version": "1.0.0",
"description": "Spotguide for Node.js with MongoDB database",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node .",
"start:dev": "NODE_ENV=development nodemon . | pino-pretty",
"test": "npm run lint && npm run unit-test",
"unit-test": "jest",
"fmt": "prettier --find-config-path --write './**/*.{js,json,yaml}' && npm run lint -- --fix",
"lint": "eslint ."
},
"dependencies": {
"@banzaicloud/service-tools": "4.0.0",
"@hapi/joi": "16.1.7",
"@opencensus/core": "0.0.19",
"@opencensus/exporter-jaeger": "0.0.19",
"@opencensus/nodejs": "0.0.19",
"bson": "4.0.2",
"koa": "2.11.0",
"koa-bodyparser": "4.2.1",
"koa-compose": "4.1.0",
"koa-router": "7.4.0",
"mongoose": "5.8.4",
"prom-client": "11.5.3",
"semver": "7.1.1",
"stoppable": "1.1.0"
},
"devDependencies": {
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"husky": "3.1.0",
"jest": "24.9.0",
"nodemon": "2.0.2",
"pino-pretty": "3.5.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"request-promise-native": "1.0.8"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js"
],
"testMatch": [
"**/?(*.)+(spec|test).js",
"**/__tests__/*.+js"
],
"resetMocks": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm test"
}
}
}