forked from alwxkxk/akoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "akoa",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon ./src/app.js",
"test": "mocha --require intelli-espower-loader --delay test/api.test.js",
"init": "node src/init/init.js"
},
"standard": {
"globals": [
"describe",
"it",
"after",
"run"
]
},
"nodemonConfig": {
"ignore": [
"node_modules/*",
"README.md",
"package-lock.json",
"package.json"
],
"delay": "500"
},
"author": "alwxkxk",
"license": "ISC",
"dependencies": {
"@koa/cors": "^2.2.1",
"async-busboy": "^0.6.2",
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"chalk": "^2.3.0",
"joi": "^13.0.2",
"koa": "^2.3.0",
"koa-better-body": "^3.0.4",
"koa-better-router": "^2.1.1",
"koa-handle-error": "0.0.5",
"lodash": "^4.17.4",
"mysql": "^2.15.0",
"nodemailer": "^4.4.0",
"redis": "^2.8.0",
"socket.io": "^2.0.4",
"systeminformation": "^3.33.18",
"uuid": "^3.1.0"
},
"devDependencies": {
"intelli-espower-loader": "^1.0.1",
"md5": "^2.2.1",
"mocha": "^4.0.1",
"moment": "^2.19.1",
"power-assert": "^1.4.4",
"supertest": "^3.0.0"
}
}