This repository has been archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.68 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"babel": {
"presets": [
"es2015-node6",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"dependencies": {
"axios": "^0.15.2",
"babel-core": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-node6": "^0.3.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.18.0",
"bluebird": "^3.4.6",
"bower": "^1.7.9",
"chalk": "^1.1.3",
"connect-slashes": "^1.3.1",
"continuation-local-storage": "^3.2.0",
"cron": "^1.1.1",
"cssnano": "^3.8.0",
"d3": "^4.3.0",
"d3-array": "^1.0.1",
"d3-scale": "^1.0.3",
"d3-time-format": "^2.0.2",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"eslint-plugin-babel": "^3.3.0",
"exhibit": "^0.10.1",
"exhibit-directory": "^0.10.1",
"exhibit-plugin-autoprefixer": "^0.10.1",
"exhibit-plugin-babel": "^0.10.1",
"exhibit-plugin-browserify": "^0.10.1",
"exhibit-plugin-postcss": "^0.10.1",
"exhibit-plugin-sass": "^0.10.1",
"exhibit-plugin-uglify": "^0.10.1",
"express": "^4.14.0",
"g-ui": "git+https://github.com/Financial-Times/g-ui.git#adds-templates",
"html-minifier": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.8.3",
"lodash": "^4.16.6",
"loud-rejection": "^1.6.0",
"lru-cache": "^4.0.1",
"marked": "^0.3.6",
"moment": "^2.15.2",
"node-fetch": "^1.6.3",
"nunjucks": "^2.5.2",
"nunjucks-markdown": "^2.0.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"pretty-ms": "^2.1.0",
"promise": "^7.1.1",
"sequelize": "^3.24.6",
"sequelize-cli": "^2.4.0",
"svg-intersections": "^0.2.5",
"trip": "^1.0.3",
"winston": "^2.2.0",
"xmldom": "^0.1.22"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"get-css": "^1.2.1",
"mocha": "^3.1.2",
"nodemon": "^1.11.0"
},
"engines": {
"node": ">=8.1.4"
},
"private": true,
"scripts": {
"dev": "trip watch & nodemon --ext js,html,svg,css,json --ignore dist --ignore public",
"postinstall": "bower install && trip build",
"scraper": "node --require ./setup.js scraper/run",
"migrate": "sequelize db:migrate",
"republisher": "node --require ./setup.js server/lib/results/republisher",
"start": "npm run migrate && node --optimize_for_size --max_old_space_size=460 --gc_interval=100 --require ./setup.js server",
"test": "mocha --compilers js:babel-core/register layouts/*.spec.js"
}
}