-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "ddd-api",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "mocha -t 5000 --compilers js:babel-register",
"start": "nodemon src/index.js --exec babel-node",
"build": "babel src -d build",
"serve": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trillers/ddd-api.git"
},
"author": "leekangtaqi",
"license": "ISC",
"bugs": {
"url": "https://github.com/trillers/ddd-api/issues"
},
"homepage": "https://github.com/trillers/ddd-api#readme",
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"dotenv": "^4.0.0",
"koa": "^2.2.0",
"koa-body": "^2.0.1",
"koa-bodyparser": "^4.2.0",
"koa-cors": "0.0.16",
"koa-onerror": "^3.1.0",
"koa-router": "^7.1.1",
"koa-views": "^6.0.2",
"lodash": "^4.17.4",
"log4js": "^1.1.1",
"mongoose": "^4.9.6",
"mysql": "^2.13.0",
"redis": "^2.7.1",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"swig": "^1.4.2",
"medico-settings": "file:../ddd-settings"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"nodemon": "^1.11.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.9.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.2.0"
}
}