-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
160 lines (160 loc) · 5.28 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "capco-global-challenge",
"version": "1.0.0",
"description": "Capco Global Challenge",
"repository": {
"type": "git",
"url": "git://github.com/flexdinesh/react-redux-boilerplate.git"
},
"license": "MIT",
"author": "Andrew Kentish",
"scripts": {
"prebuild": "npm run build:clean",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.babel.js --color --mode production --progress",
"build:clean": "rimraf ./build",
"clean": "npm run test:clean && npm run build:clean",
"eslint:fix": "eslint -- . --ignore-path .gitignore --fix",
"lint": "npm run lint:js && npm run lint:css",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:js": "npm run lint:eslint -- . ",
"lint:css": "sass-lint -c .sass-lint.yml 'app/**/*.scss' -v -q",
"start": "cross-env NODE_ENV=development node server",
"start:global": "cross-env NODE_ENV=development CHALLENGE_NAME=global node server",
"start:uk": "cross-env NODE_ENV=development CHALLENGE_NAME=uk node server",
"start:prod": "cross-env NODE_ENV=production node server",
"start:production": "npm run test && npm run build && npm run start:prod",
"pretest": "npm run test:clean && npm run lint",
"test": "cross-env NODE_ENV=test jest --coverage && cypress open",
"test:clean": "rimraf ./coverage",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"cypress:open": "cypress open",
"styleguide": "npx styleguidist server",
"precommit": "npm run lint"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@react-google-maps/api": "^2.18.1",
"@semantic-ui-react/css-patch": "^1.1.2",
"axios": "^1.7.2",
"chalk": "^2.4.2",
"circular-dependency-plugin": "^5.2.2",
"compression": "1.7.4",
"cors": "^2.8.5",
"cross-env": "6.0.3",
"d3": "^7.8.5",
"d3-array": "^2.12.1",
"d3-ease": "^1.0.5",
"d3-geo": "^1.11.3",
"d3-scale": "^4.0.2",
"d3-selection": "^1.4.0",
"express": "4.19.2",
"follow-redirects": "1.15.6",
"fontfaceobserver": "2.3.0",
"handlebars": "4.7.8",
"history": "4.10.1",
"hoist-non-react-statics": "3.0.1",
"immer": "9.0.21",
"immutable": "3.8.2",
"invariant": "2.2.4",
"ip": "^1.1.9",
"jquery": "^3.7.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"mongoose": "^8.4.0",
"node-forge": "1.3.1",
"nodemailer": "^6.9.7",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"query-string": "^6.14.1",
"react": "^16.8",
"react-dom": "^16.8",
"react-helmet": "^5.2.0",
"react-loadable": "^5.5.0",
"react-redux": "5.1.2",
"react-router-dom": "^5.3.4",
"react-router-redux": "^5.0.0-alpha.8",
"react-window": "^1.8.10",
"redux": "3.7.2",
"redux-immutable": "4.0.0",
"reselect": "4.1.8",
"sanitize.css": "8.0.1",
"sass": "^1.77.2",
"simple-oauth2": "^5.0.0",
"ssri": "6.0.2",
"strava-v3": "^2.2.0",
"topojson-client": "^3.0.0",
"underscore": "^1.13.6",
"warning": "^4.0.1",
"whatwg-fetch": "2.0.4",
"y18n": "4.0.3",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/plugin-transform-react-constant-elements": "7.0.0",
"@babel/plugin-transform-react-inline-elements": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "^7.0.0",
"add-asset-html-webpack-plugin": "^5.0.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-react-transform": "3.0.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.19",
"css-loader": "^6.7.3",
"cypress": "^13.6.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^8.31.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-redux-saga": "0.9.0",
"eventsource-polyfill": "0.9.6",
"exports-loader": "0.7.0",
"file-loader": "6.2.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "^5.5.0",
"imports-loader": "0.8.0",
"jest-cli": "^29.3.1",
"node-plop": "^0.31.0",
"null-loader": "0.1.1",
"plop": "^3.1.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.3.3",
"react-docgen": "^4.0.1",
"react-intl": "^2.8.0",
"react-styleguidist": "13.0.0",
"react-test-renderer": "^16.5.2",
"rebuild-node-sass": "^1.1.0",
"redux-saga": "^0.16.2",
"rimraf": "2.6.2",
"sass-loader": "^13.2.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^0.85.0",
"shelljs": "0.8.5",
"style-loader": "^3.3.1",
"url-loader": "4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-hot-middleware": "^2.25.2"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5"
}
}