-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
110 lines (110 loc) · 3.09 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
{
"name": "mapbox-camera-sandbox",
"version": "1.0.0",
"description": "Mapbox camera sandbox",
"repository": {
"type": "git",
"url": ""
},
"author": {
"name": "Development Seed",
"url": "https://developmentseed.org"
},
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"scripts": {
"postinstall": "[ -f app/assets/scripts/config/local.js ] || echo \"'use strict';\n\nexport default {\n environment: 'development'\n};\" > app/assets/scripts/config/local.js",
"serve": "NODE_ENV=development gulp serve",
"build": "NODE_ENV=production gulp",
"stage": "NODE_ENV=staging gulp",
"lint": "eslint app/assets/scripts/ --ext .js",
"lint:css": "stylelint 'app/assets/styles/**/**' 'app/assets/scripts/**/*.js'",
"test": "echo \"No tests\" && exit 0"
},
"engines": {
"node": "14.x"
},
"browserify": {
"transform": [
"babelify",
"require-globify",
[
"envify",
{
"_": "purge"
}
]
]
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babelify": "^10.0.0",
"browser-sync": "^2.26.13",
"browserify": "^17.0.0",
"collecticons-processor": "^4.1.0",
"del": "^6.0.0",
"envify": "^4.1.0",
"errorify": "^0.3.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-inclusive-language": "^1.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-csso": "^4.0.1",
"gulp-exit": "0.0.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.5",
"gulp-plumber": "^1.2.1",
"gulp-rev": "^9.0.0",
"gulp-rev-rewrite": "^4.0.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^1.4.1",
"gulp-useref": "^5.0.0",
"prettier": "^2.1.2",
"require-globify": "^1.4.1",
"stylelint": "^13.7.2",
"stylelint-config-recommended": "^3.0.0",
"surge": "^0.21.7",
"through2": "^4.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^4.7.2",
"animejs": "^3.2.1",
"core-js": "^3.7.0",
"file-saver": "^2.0.5",
"gulp-replace": "^1.0.0",
"lodash.defaultsdeep": "^4.6.1",
"mapbox-gl": "2.3.1",
"polished": "^4.0.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-input-range": "^1.3.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.3.1",
"react-tether": "^2.0.7",
"react-transition-group": "^4.4.1",
"styled-components": "^5.2.1"
}
}