-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "musaAPI",
"version": "1.0.0",
"description": "Musa mobile application REST service",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --harmony server.js",
"test:models": "NODE_ENV=test mocha -- test/models/*.js",
"test:controllers": "NODE_ENV=test mocha --harmony -- api/test/controller/*.js",
"db:create": "node_modules/.bin/create_database",
"db:drop": "node_modules/.bin/drop_database",
"pm2": "pm2 start server.js --node-args=\"--harmony\""
},
"repository": {
"type": "git",
"url": "https://github.com/KleioDev/musaAPI.git"
},
"author": "Kleio",
"license": "ISC",
"bugs": {
"url": "https://github.com/KleioDev/musaAPI/issues"
},
"homepage": "https://github.com/KleioDev/musaAPI",
"dependencies": {
"bcrypt": "^0.8.2",
"chai": "^2.1.1",
"chance": "^0.7.4",
"co-mocha": "^1.1.0",
"co-request": "^0.2.1",
"dotenv": "^0.5.1",
"email": "^0.2.6",
"json": "^9.0.3",
"koa": "^0.18.1",
"koa-better-body": "^1.0.17",
"koa-cors": "0.0.14",
"koa-json": "^1.1.1",
"koa-jwt": "^0.1.9",
"koa-logger": "^1.2.2",
"koa-mount": "^1.3.0",
"koa-pg": "^0.24.0",
"koa-route": "^2.4.0",
"koa-router": "^4.2.0",
"koa-session": "^3.1.0",
"koa-validate": "^0.2.10",
"lodash": "^3.5.0",
"mocha": "^2.2.1",
"pg": "^4.3.0",
"pg-hstore": "^2.3.1",
"qs": "^2.4.1",
"sequelize": "^2.0.4",
"sequelize-migration-pg-extras": "^1.0.1",
"supertest": "^0.15.0",
"supertest-as-promised": "^1.0.0",
"thunkify": "^2.1.2"
}
}