forked from BrandNewCongress/hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.27 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
73
74
75
76
77
78
{
"name": "bnc-api",
"version": "1.0.0",
"description": "Brand New Congress API",
"main": "src",
"engines": {
"node": "6.2.2",
"npm": "3.7.3"
},
"scripts": {
"test": "test",
"clean": "rm -rf $OUTPUT_DIR",
"lint": "eslint --fix --ext js --ext jsx src",
"prod-build": "babel ./src -d $OUTPUT_DIR --source-maps",
"postinstall": "if [ \"$NODE_ENV\" = production ] ; then npm run prod-build ; fi",
"start": "node $OUTPUT_DIR",
"worker": "node $OUTPUT_DIR/worker.js",
"predev-start": "npm run clean",
"dev-start": "nodemon -e js,jsx,md,mustache -w ./src --exec ./dev-tools/babel-run -- ./src",
"dev-worker": "nodemon -e js -w ./src --exec ./dev-tools/babel-run -- ./src/worker.js",
"kue-dashboard": "kue-dashboard -p 3050 -r $REDIS_URL",
"dev": "nf start -w --procfile ./dev-tools/Procfile.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandnewcongress/api.git"
},
"keywords": [
"api",
"brand",
"new",
"congress"
],
"author": "Saikat Chakrabarti",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/brandnewcongress/api/issues"
},
"homepage": "https://github.com/brandnewcongress/api/#readme",
"dependencies": {
"airtable": "^0.4.3",
"axios": "^0.15.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babyparse": "^0.4.6",
"basic-auth": "^1.1.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"dotenv": "^2.0.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"foreman": "^1.4.1",
"google-libphonenumber": "^2.0.7",
"html-to-text": "^2.1.3",
"kue": "^0.11.5",
"mailgun-js": "^0.7.14",
"marked": "^0.3.6",
"minilog": "^3.0.1",
"moment": "^2.17.1",
"mustache": "^2.3.0",
"nodemon": "^1.9.2",
"normalize-url": "^1.8.0",
"rollbar": "^0.6.2",
"to-camel-case": "^1.0.0",
"to-space-case": "^1.0.0",
"yup": "^0.21.3"
}
}