-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
170 lines (170 loc) · 5.86 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
161
162
163
164
165
166
167
168
169
170
{
"name": "mapseed-platform",
"version": "1.0.0",
"description": "Plant a map, grow a community",
"engines": {
"node": ">=14.0.0 <17.0",
"npm": ">=6.0 <7.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mapseed/platform.git"
},
"keywords": [
"maps",
"crowdsourcing",
"engagement"
],
"author": "Mapseed",
"license": "GPL",
"bugs": {
"url": "https://github.com/mapseed/platform/issues"
},
"homepage": "https://github.com/mapseed/platform",
"scripts": {
"start": "rm -rf www/* && node scripts/static-build.js && webpack serve --progress",
"deploy": "node scripts/deploy.js",
"build-deploy": "npm run build && npm run deploy",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "npm run eslint && ./node_modules/.bin/jest && npm run prettier && npm run type-check",
"test-only": "./node_modules/.bin/jest",
"eslint": "eslint src scripts --ext .js,.ts,.tsx",
"eslint:fix": "eslint --fix src scripts --ext .js,.ts,.tsx",
"test:watch": "jest --watch --verbose --config ./jest.watch.config.js",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"build-js": "webpack -d",
"build-js-production": "NODE_ENV=production webpack --mode=production --progress",
"watch-js": "webpack -d --watch",
"build": "rm -rf www/* && NODE_ENV=production node scripts/static-build.js && npm run build-js-production",
"prettier": "prettier --list-different \"{src,scripts}/**/*.{js,jsx,ts,tsx,json}\"",
"prettier:fix": "prettier --write \"{src,scripts}/**/*.{js,jsx,ts,tsx,json}\""
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@babel/runtime": "^7.7.6",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.3",
"@turf/area": "^6.0.1",
"@turf/distance": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@types/d3-geo": "^3.1.0",
"@types/geojson": "^7946.0.7",
"@types/mapbox-gl": "^1.9.1",
"@types/moment-timezone": "^0.5.30",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-map-gl": "^6.1.2",
"@types/react-modal": "^3.10.5",
"@types/react-redux": "^7.1.24",
"@types/viewport-mercator-project": "^6.1.0",
"accessible-autocomplete": "github:mapseed/accessible-autocomplete#7e56b805ee7ce77bebae67f6454a5c3f5e4987a8",
"browser-update": "^3.1.13",
"classnames": "^2.2.5",
"d3-geo": "^3.1.0",
"dom-to-image": "^2.6.0",
"dotenv": "^16.3.1",
"downloadjs": "^1.4.7",
"emotion-theming": "^10.0.19",
"eventemitter3": "^4.0.0",
"glob": "^7.1.6",
"hoist-non-react-statics": "^3.3.0",
"html-webpack-plugin": "^5.5.0",
"i18next": "^19.4.4",
"immer": "^9.0.19",
"immutable": "^4.3.4",
"lodash.groupby": "^4.6.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"node-env-file": "^0.1.7",
"sass": "^1.69.5",
"normalize.css": "^8.0.1",
"qs": "^6.11.1",
"react": "^16.14.0",
"react-cookie-consent": "^6.2.3",
"react-datetime": "~2.16.3",
"react-dom": "~16.12.0",
"react-draggable": "^4.3.1",
"react-i18next": "~11.2.6",
"react-map-gl": "^6.0.0",
"react-modal": "~3.11.1",
"react-pdf": "^5.2.0",
"react-quill": "~1.3.3",
"react-redux": "~7.2.2",
"react-router-dom": "^5.2.0",
"react-spinners": "^0.13.8",
"react-virtualized": "^9.22.3",
"recharts": "^2.10.3",
"redux": "^4.0.4",
"reselect": "^4.0.0",
"shelljs": "^0.8.5",
"throttle-debounce": "^5.0.0",
"tinycolor2": "^1.4.1",
"turf-extent": "^1.0.4",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@alienfast/i18next-loader": "^2.0.2",
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-async-generator-functions": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.13.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@webpack-cli/serve": "^2.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.2",
"babel-plugin-emotion": "^10.0.23",
"colors": "^1.4.0",
"compass-mixins": "^0.12.10",
"css-loader": "^6.7.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "~1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint-plugin-emotion": "^10.0.27",
"eslint": "^8.35.0",
"eslint-plugin-react": "~7.23.2",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"fs-extra": "^9.0.1",
"jest": "^29.7.0",
"jest-runner-prettier": "^0.3.6",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^1.6.0",
"mv": "^2.1.1",
"optimist": "^0.6.1",
"prettier": "^2.2.1",
"raf": "^3.4.1",
"s3-website": "github:mapseed/s3-website#1cc73823eded520c4c85b5567abe41f32a910c68",
"sass-loader": "^7.3.1",
"source-map-loader": "^0.2.4",
"spritesmith": "^3.4.0",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.0",
"typescript": "5.3.3",
"watchify": "^3.11.1",
"webpack": "^5.0.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^4.15.1",
"webpack-modernizr-loader": "^5.0.0",
"workbox-webpack-plugin": "^4.3.1",
"yaml-loader": "^0.5.0"
}
}