This repository was archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.53 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"node": true,
"browsers": [
"ie >= 11",
"ios >= 9",
"last 1 chromeandroid version",
"last 1 edge version",
"last 1 firefoxandroid version",
"last 2 chrome versions",
"last 2 firefox versions",
"safari >= 10",
"samsung >= 5"
],
"useBuiltIns": true
}
}
],
"flow"
],
"plugins": [
"transform-class-properties",
"styled-jsx/babel",
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
],
[
"transform-runtime",
{
"helpers": false,
"polyfill": false
}
]
]
},
"devDependencies": {
"@financial-times/g-deploy": "^3.0.8",
"ajv": "^5.2.3",
"animejs": "^2.2.0",
"axios": "^0.16.2",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.0",
"bower": "^1.8.2",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.1.0",
"css-loader": "^0.28.11",
"d3-time-format": "^2.0.5",
"eases": "^1.0.8",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-loader": "^1.0.1",
"file-loader": "^1.1.6",
"flow-bin": "^0.56.0",
"fscreen": "^1.0.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^4.0.0",
"imagemin-webpack-plugin": "^1.5.2",
"inkjs": "^1.6.0",
"invariant": "^2.2.2",
"jsdom": "^11.3.0",
"lodash": "^4.17.4",
"markdown-it": "^8.4.0",
"mini-css-extract-plugin": "^0.4.0",
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"moment-timezone": "^0.5.13",
"node-sass": "^4.14.1",
"nodemon": "^1.12.1",
"nunjucks": "^3.0.1",
"nunjucks-html-loader": "github:ft-interactive/nunjucks-html-loader",
"nunjucks-markdown": "^2.0.1",
"pa11y": "^4.13.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"prop-types": "^15.6.0",
"raw-loader": "^1.0.0-beta.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"remove-markdown": "^0.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"styled-jsx": "^2.0.0-beta.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"yaml-loader": "^0.6.0"
},
"engines": {
"node": ">=8",
"npm": ">=5.3.x"
},
"private": true,
"scripts": {
"build": "webpack -p --env=production",
"a11y": "pa11y $(g-deploy --get-commit-url)",
"a11y:preview": "pa11y $(g-deploy --preview --get-commit-url)",
"a11y:local": "pa11y localhost:8080",
"deploy": "g-deploy --assets-prefix=https://ig.ft.com/v2/__assets/",
"postinstall": "bower install --allow-root",
"pretest": "npm run build",
"test": "mocha ./test/**/*.spec.js",
"start": "webpack-dev-server -r dotenv/config",
"lint": "eslint server/**/*.js client/**/*.js test/**/*.js"
}
}