-
Notifications
You must be signed in to change notification settings - Fork 131
/
api-server:package.json
62 lines (62 loc) · 2 KB
/
api-server: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": "api-server",
"private": true,
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "babel --source-maps true src --out-dir dist",
"start": "node --require babel-polyfill dist/index.js",
"watch": "nodemon -e js,html,css -w ../email/src -w ../sms/src -w src -- --require babel-polyfill ./node_modules/.bin/babel-node src/index.js",
"lint": "eslint .",
"lint:watch": "nodemon node_modules/.bin/eslint .",
"test-migrations": "mocha src/migrations/index.test.js --require babel-core/register",
"test": "yarn run lint && yarn run test-migrations && mocha src/index.test.js --require babel-core/register",
"doc": "swagger-jsdoc -d scripts/swaggerDef.js -o ../documentation/public/swagger.json ./src/**/*.js",
"doc:watch": "yarn run doc -- -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.63.0",
"babel-cli": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.3.2",
"bcrypt": "^1.0.1",
"busboy": "^0.2.14",
"date-arithmetic": "^3.1.0",
"jsonwebtoken": "^7.2.1",
"koa": "^2.0.0",
"koa-bodyparser": "^3.2.0",
"koa-compose": "^3.2.1",
"koa-router": "^7.0.1",
"lodash": "^4.17.2",
"moment": "^2.18.1",
"mongoose": "^4.7.5",
"node-cron": "^1.2.1",
"node-fetch": "^1.6.3",
"path-to-regexp": "^1.7.0",
"pdfinfo": "^0.0.3",
"sharp": "^0.17.3",
"smart-require": "^1.0.2",
"socket.io": "^1.7.3",
"stream-to-array": "^2.3.0",
"tmp": "^0.0.31",
"transliteration": "^1.5.2",
"winston": "^2.4.0",
"winston-slack-transport": "^2.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chance": "^1.0.11",
"eslint": "^3.14.1",
"eslint-config-clovis": "^1.0.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"sinon": "^4.0.0",
"supertest": "^3.0.0",
"swagger-jsdoc": "^1.9.7"
}
}