-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.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
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
66
67
68
69
70
71
72
73
74
75
{
"name": "coronamed-api",
"version": "1.2.1",
"description": "coronamed-api project",
"main": "./bin/http-server.js",
"scripts": {
"start": "NODE_PATH=./app node ./bin/http-server.js",
"start:prod": "NODE_ENV=production NODE_PATH=./app node ./bin/http-server.js",
"start:stage": "NODE_ENV=stage NODE_PATH=./app node ./bin/http-server.js",
"start:dev": "BABEL_DISABLE_CACHE=1 NODE_ENV=development NODE_PATH=./app nodemon ./bin/http-server.js",
"dev": "npm run start:dev",
"console": "NODE_PATH=./app node bin/script.js",
"job": "NODE_PATH=./app node bin/worker.js",
"test": "NODE_ENV=test jest --forceExit --verbose",
"lint": "eslint app app_console app_worker"
},
"keywords": [
"koa2",
"babel",
"es6",
"es2016",
"es2017",
"eslint"
],
"author": "Andrew L.",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@fast-csv/format": "^4.2.0",
"@fast-csv/parse": "^4.3.6",
"@google/maps": "^1.1.3",
"@koa/cors": "^3.1.0",
"JSONStream": "^1.3.2",
"app-utils": "git+https://workerco:3aXno3LwK6gnBcPyEdDrVgIaJ2phG9II@bitbucket.org/workerco/app-utils.git#master",
"archiver": "^4.0.1",
"bcrypt": "^3.0.8",
"bluebird": "^3.7.2",
"config": "^3.3.1",
"dotenv": "^7.0.0",
"glob": "^7.1.6",
"jsonwebtoken": "^8.5.1",
"koa": "^2.12.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"mandrill-api": "^1.0.45",
"minimist": "^1.2.3",
"mongoose": "^5.9.15",
"mongoose-beautiful-unique-validation": "git+https://github.com/men232/mongoose-beautiful-unique-validation.git#patch-1",
"mw-authentication": "git+https://workerco:3aXno3LwK6gnBcPyEdDrVgIaJ2phG9II@bitbucket.org/workerco/mw-authentication.git#v2.0",
"mw-pagination": "git+https://workerco:3aXno3LwK6gnBcPyEdDrVgIaJ2phG9II@bitbucket.org/workerco/mw-pagination.git#master",
"prettyjson": "^1.2.1",
"pug": "^2.0.4",
"through2": "^3.0.1",
"uuid": "^3.4.0",
"winston": "^3.2.0",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^22.21.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4"
},
"engines": {
"node": "12.16.2",
"npm": "6.14.4"
}
}