-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.13 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
{
"name": "mountains",
"version": "0.0.1",
"scripts": {
"precommit": "npm test && lint-staged",
"prettier": "prettier --write --tab-width 2 \"modules/*.js\" \"tests/*.js\" \"components/*.js\"",
"lint": "./node_modules/.bin/eslint components modules --fix",
"start": "nf start",
"dev": "nf start && gulp watch",
"tiles": "nf run node builders/trailsBuilder.js",
"upload": "nf run node builders/uploader.js",
"migrate": "nf run db-migrate up",
"migrate-down": "nf run db-migrate down",
"size": "webpack --config webpack.production.config.js --json | webpack-bundle-size-analyzer",
"test": "nf run jest",
"snapshots": "nf run jest --updateSnapshot",
"benchmarks": "nf run node tests/benchmarkTests.js",
"mapify": "gulp mapify",
"heroku-postbuild": "gulp mapify && ./node_modules/.bin/webpack --config webpack.production.config.js -p && node builders/uploadBundle.js"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"testURL": "http://localhost/",
"setupTestFrameworkScriptFile": "./tests/setupTestFrameworkScriptFile.js"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run prettier",
"npm run lint",
"git add"
]
},
"license": "ISC",
"dependencies": {
"@mapbox/geo-viewport": "^0.2.1",
"@turf/bbox": "^4.7.3",
"@turf/bearing": "^6.0.1",
"@turf/bezier": "^4.1.0",
"@turf/centroid": "^4.6.1",
"@turf/destination": "^6.0.1",
"@turf/distance": "^4.0.1",
"@turf/helpers": "^4.0.1",
"@turf/line-distance": "^4.6.0",
"@turf/line-intersect": "^6.0.2",
"@turf/line-slice": "^4.0.2",
"@turf/nearest": "^4.0.1",
"@turf/point-on-line": "^4.0.2",
"@turf/simplify": "^4.1.0",
"aws-sdk": "^2.247.1",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.28.11",
"dateformat": "^3.0.3",
"db-migrate": "^0.11.1",
"db-migrate-pg": "^0.4.0",
"dbgeo": "^1.1.0",
"dotenv": "^6.0.0",
"emotion-theming": "^9.2.9",
"express": "^4.16.3",
"foreman": "^3.0.1",
"gulp": "^4.0.0",
"gulp-json-editor": "^2.4.1",
"gulp-merge-json": "^1.3.1",
"gulp-plumber": "^1.2.0",
"history": "^4.7.2",
"identity-obj-proxy": "^3.0.0",
"immutable": "^3.8.2",
"isomorphic-fetch": "^2.2.1",
"jimp": "^0.2.28",
"jsonfile": "^3.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^0.51.0",
"moment": "^2.22.1",
"node-fetch": "^1.7.3",
"optional": "^0.1.4",
"pg": "^6.0.1",
"prop-types": "^15.6.1",
"raven": "^2.6.3",
"react": "^16.4.0",
"react-beautiful-dnd": "^10.0.3",
"react-dom": "^16.4.0",
"react-emotion": "^9.2.10",
"react-redux": "^6.0.0",
"react-test-renderer": "^16.4.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"style-loader": "^0.18.2",
"svg-partial-circle": "^1.0.0",
"svg-to-jsx-loader": "^2.0.1",
"underscore": "^1.9.0",
"viewport-mercator-project": "^4.1.1",
"webpack": "^4.15.0",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@mapbox/mbtiles": "^0.10.0",
"@mapbox/tilelive": "^5.12.6",
"@turf/bbox-polygon": "^6.0.1",
"babel-plugin-emotion": "^9.2.10",
"benchmark": "^2.1.4",
"emotion": "^9.2.10",
"eslint": "^4.19.1",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-react": "^7.9.1",
"fixy": "^1.1.0",
"glob": "^7.1.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jest-emotion": "^9.2.7",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"prettier": "1.13.5",
"query-string": "^6.2.0",
"svg-sprite-loader": "^4.1.2",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"xml2js": "^0.4.19"
},
"engines": {
"node": "10.5.0"
}
}