-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "koa-server",
"version": "0.2.0",
"description": "",
"main": "server/index.js",
"scripts": {
"start": "node server/",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --opts ./test/server/mocha.opts ./test/server/**/*.spec.js",
"test-unit": "NODE_ENV=test ./node_modules/.bin/mocha --opts ./test/unit/mocha.opts ./test/unit/**/*.spec.js",
"start-prod": "NODE_ENV=production node server/",
"start-pm2": "NODE_ENV=production pm2 start server/ --name='agileworks-api'",
"restart-pm2": "pm2 restart agileworks-api"
},
"license": "MIT",
"dependencies": {
"axios": "^0.8.1",
"blocked": "^1.1.0",
"co": "^4.6.0",
"debug": "^2.2.0",
"fs": "0.0.2",
"fs-extra": "^0.26.4",
"koa": "^2.0.0-alpha.3",
"koa-bodyparser": "^3.0",
"koa-compress": "^1.0.9",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-generic-session": "^1.10.1",
"koa-jade-render": "^1.0.0",
"koa-logger": "^2.0.0",
"koa-mount": "^1.3.0",
"koa-passport": "^2.0",
"koa-response-time": "^1.0.2",
"koa-router": "^7.0.0",
"koa-send": "^3.1.0",
"koa-static-cache": "^3.1.4",
"moment": "^2.10.6",
"mysql": "^2.9.0",
"passport-local": "^1.0.0",
"sequelize": "^3.0.0",
"sqlite3": "^3.0.8"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"brfs": "^1.4.2",
"chai": "^3.4.1",
"mocha": "^2.2.5",
"should": "^8.0.0",
"sinon": "^1.15.4",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2"
},
"tags": [],
"keywords": [],
"engines": {
"iojs": "^2.3.0",
"nodejs": "^0.12"
}
}