This repository was archived by the owner on Aug 10, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "differ",
"version": "1.0.0",
"description": "Diffing service for the website monitoring project",
"main": "index.js",
"scripts": {
"db:init": "babel-node -- ./db/init.js",
"db:nuke": "babel-node -- ./db/nuke.js",
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:edgi-govdata-archiving/differ.git"
},
"author": "Westley Argentum Hennigh-Palermo",
"license": "MIT",
"bugs": {
"url": "https://github.com/edgi-govdata-archiving/differ/issues"
},
"homepage": "https://github.com/edgi-govdata-archiving/differ",
"dependencies": {
"axios": "^0.15.3",
"bluebird": "3.4.1",
"body-parser": "^1.16.0",
"child-process-promise": "^2.2.0",
"cors": "2.7.1",
"diff2html": "^2.0.12",
"express": "4.14.0",
"express-graphql": "0.5.3",
"fast-csv": "^2.3.0",
"helmet": "2.1.2",
"highland": "^2.10.1",
"is-url": "^1.2.2",
"moment": "^2.16.0",
"morgan": "1.7.0",
"mori": "^0.3.2",
"multer": "^1.2.0",
"passport": "0.3.2",
"passport-http": "0.3.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"postgraphql": "^2.3.0",
"sequelize": "^3.24.8",
"sequelize-fixtures": "^0.5.5",
"tmp": "0.0.31"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "6.1.2",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-plugin-transform-es2015-destructuring": "6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.11.5",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-register": "6.11.6",
"chai": "3.5.0",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-friendly-formatter": "2.0.6",
"eslint-loader": "1.5.0",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "2.1.0",
"eslint-plugin-react": "6.1.1",
"nodemon": "1.10.0"
}
}