This repository has been archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
64
65
66
67
68
69
70
71
72
{
"name": "jimmy-streams-api",
"version": "0.1.0",
"description": "An Activity Streams API in NodeJS",
"keywords": [
"jimmy",
"activity",
"stream",
"activity streams",
"timeline",
"feeds",
"social",
"notification"
],
"main": "index.js",
"scripts": {
"clean": "./node_modules/.bin/gulp clean",
"build": "./node_modules/.bin/gulp build",
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon --exec ./node_modules/.bin/babel-node app/server.js",
"prestart": "NODE_ENV=production npm run build",
"start": "NODE_ENV=production pm2 start dist/server.js -n streams -i 0",
"test": "NODE_ENV=test mocha --compilers js:babel-register test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmycodesocial/jimmy-streams-api.git"
},
"author": "Jimmy Code Social",
"contributors": [
"Alberto Menendez Romero <[email protected]> (https://github.com/albertomr86)",
"Joel Macías Roque <[email protected]> (https://github.com/joelmcs6)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/jimmycodesocial/jimmy-streams-api/issues"
},
"homepage": "https://github.com/jimmycodesocial/jimmy-streams-api#readme",
"engines": {
"node": "~5.6.0"
},
"dependencies": {
"async": "^2.1.4",
"aws-sdk": "^2.7.10",
"body-parser": "^1.15.2",
"config": "^1.24.0",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-paginate": "^0.2.2",
"ioredis": "^2.4.2",
"jaysonapi": "^2.1.0",
"joi": "^10.0.4",
"lodash": "^4.17.2",
"mongodb": "^2.2.12",
"orientjs": "^2.2.4",
"rieluz": "^0.1.12",
"shortid": "^2.2.6",
"validate": "^3.0.1",
"winston": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-node": "^6.1.1",
"babel-register": "^6.18.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"nodemon": "^1.11.0",
"run-sequence": "^1.2.2"
}
}