-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
134 lines (134 loc) · 3.96 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
{
"name": "prep-app",
"version": "1.2.0",
"description": "Partnership for Resilience and Preparedness",
"main": "server.js",
"scripts": {
"dev": "node server.js",
"build": "better-npm-run build:prod",
"lint": "eslint --ext .js --ext .jsx . --fix",
"test": "npm run lint && ./node_modules/mocha/bin/mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm run test -- --watch",
"changelog": "yarn auto-changelog"
},
"repository": {
"type": "git",
"url": "https://github.com/resource-watch/prep-app"
},
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "http://vizzuality.com"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2"
},
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/runtime": "^7.0.0",
"autoprefixer": "6.7.7",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-polyfill": "^6.26.0",
"better-npm-run": "^0.1.1",
"bitly": "4.1.1",
"bluebird": "3.5.1",
"body-parser": "1.17.1",
"classnames": "2.2.5",
"cookie-parser": "1.4.3",
"css-loader": "^1.0.0",
"dotenv": "^6.0.0",
"express": "4.15.2",
"file-loader": "0.9.0",
"formidable": "1.1.1",
"fuse.js": "3.0.5",
"handlebars": "4.7.7",
"handlebars-loader": "^1.7.0",
"helmet": "3.11.0",
"history": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "3.3.0",
"layer-manager": "1.16.0",
"leaflet": "1.2.0",
"lodash": "4.17.21",
"mini-css-extract-plugin": "^0.4.3",
"morgan": "1.9.1",
"node-sass": "^4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss": "6.0.14",
"postcss-loader": "2.0.8",
"pretty-error": "2.1.0",
"promise.prototype.finally": "^3.1.0",
"prop-types": "15.6.0",
"query-string": "5.0.1",
"raw-loader": "0.5.1",
"rc-slider": "8.3.1",
"rc-tooltip": "3.7.0",
"react": "^16.14",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-shallow-compare": "^15.6.0",
"react-dom": "^16.14",
"react-dom-factories": "^1.0.0",
"react-dropdown-tree-select": "1.0.4",
"react-ga": "2.4.1",
"react-geosuggest": "2.6.0",
"react-leaflet": "1.7.8",
"react-leaflet-control": "1.4.1",
"react-markdown": "3.1.1",
"react-redux": "5.0.6",
"react-redux-toastr": "7.1.6",
"react-responsive": "^5.0.0",
"react-router": "3.2.1",
"react-router-redux": "4.0.8",
"react-router-scroll": "0.4.4",
"react-scroll": "1.6.1",
"react-select": "^2.0.0",
"react-slick": "0.23.1",
"react-sortable-hoc": "^0.6.8",
"react-tether": "0.6.1",
"react-transition-group": "^1.1.2",
"reactour": "^1.18.3",
"redux": "3.6.0",
"redux-devtools-extension": "2.13.2",
"redux-thunk": "2.2.0",
"redux-tools": "github:vizzuality/redux-tools#3.3.0",
"request": "2.81.0",
"reselect": "3.0.1",
"sass-loader": "^7.3.1",
"serve-favicon": "2.4.2",
"sparkpost": "2.1.2",
"style-loader": "0.13.2",
"styled-components": "^4.0.0",
"terser-webpack-plugin": "^4",
"twitter": "1.7.0",
"urijs": "1.19.6",
"url-loader": "0.5.8",
"vega": "^3",
"vega-lib": "^4.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "4.1.0",
"whatwg-fetch": "2.0.3",
"widget-editor": "1.3.7",
"wri-api-components": "^2.3.2",
"wri-json-api-serializer": "^1.0.1"
},
"betterScripts": {
"build:prod": {
"command": "webpack --config ./config/webpack/production --progress --colors",
"env": {
"NODE_ENV": "production"
}
}
}
}