-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "encore-api",
"version": "0.0.1",
"description": "API for the encore photo experience",
"scripts": {
"start": "node index.js",
"lint": "./node_modules/eslint/bin/eslint.js -c .eslintrc ./api/**/*.js",
"pretest": "npm run lint",
"build-worker": "./node_modules/.bin/babel worker/ -d worker-es5/",
"kue-ui": "./node_modules/kue/bin/kue-dashboard"
},
"repository": {
"type": "git",
"url": "git://github.com/encore-rit/encore-api.git"
},
"author": "See PEOPLE.md for a list of contributors",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.2.48",
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"bluebird": "^3.3.5",
"body-parser": "^1.15.0",
"compression": "^1.6.0",
"cors": "^2.7.1",
"es6-error": "^2.0.2",
"express": "^4.13.3",
"express-enrouten": "^1.2.1",
"express-json-status-codes": "^1.0.1",
"imgur": "^0.1.7",
"ioredis": "^1.10.0",
"jsonwebtoken": "^5.4.1",
"kue": "^0.10.5",
"lodash": "^4.12.0",
"mailgun-js": "^0.7.10",
"mongoose": "^4.2.5",
"morgan": "^1.6.1",
"pug": "^2.0.0-alpha7",
"ramda": "^0.18.0",
"sendgrid": "^2.0.0",
"socket.io": "^1.3.7"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1"
}
}