forked from guardian/support-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.55 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
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
{
"name": "support-frontend",
"version": "1.0.0",
"description": "Frontend for the supporter platform.",
"scripts": {
"clean": "echo 'Cleaning Public Folder' && rimraf public/compiled-assets",
"validate": "echo 'Validating JS' && npm-run-all lint flow",
"flow": "flow",
"lint": "eslint --ext .js --ext .jsx .",
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "npm-run-all clean validate test 'webpack --config webpack.prod.js --env.prod'",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server --config webpack.dev.js --port 9211 --public support.thegulocal.com",
"devrun": "npm-run-all clean webpack-dev-server",
"test": "echo 'Running JS tests' && jest",
"jest-update-snapshot": "echo 'Updating JS tests' && jest -u",
"flow-typed-install": "flow-typed install -s -o --ignoreDeps peer bundle"
},
"browserslist": [
"Chrome >= 49",
"ChromeAndroid >= 49",
"Safari >= 8",
"ios_saf >= 8",
"IE >= 11",
"Edge >= 14",
"Firefox >= 48",
"FirefoxAndroid > 48",
"Samsung >= 4",
"Opera >= 54"
],
"jest": {
"transform": {
".*": "./node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"modulePaths": [
"assets"
],
"moduleNameMapper": {
"ophan(.*)": "<rootDir>/node_modules/ophan-tracker-js/build/ophan.support"
},
"verbose": true,
"testEnvironment": "./jestEnvironment"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guardian/support-frontend.git"
},
"bugs": {
"url": "https://github.com/guardian/support-frontend/issues"
},
"dependencies": {
"cssnano": "^4.1.4",
"ophan-tracker-js": "^1.3.13",
"raven-js": "^3.26.1",
"react-redux": "^5.0.7",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-stripe-elements": "^2.0.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"seedrandom": "^2.4.3",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-exponentiation-operator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^8.6.1",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-flowtype": "^3.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"flow-bin": "^0.83.0",
"flow-typed": "^2.4.0",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"postcss": "^7.0.2",
"postcss-loader": "^3.0.0",
"postcss-pxtorem": "^4.0.1",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"react-loadable": "^5.5.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"sass-mq": "^5.0.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "3.1.5",
"webpack-manifest-plugin": "2.0.3",
"webpack-merge": "^4.1.3"
}
}