-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (89 loc) · 2.37 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
{
"name": "@inflect/map",
"version": "1.1.1",
"main": "./dist/main.js",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"browserslist": [
"> 0.5%",
"ie >= 8"
],
"scripts": {
"build": "webpack --mode=production",
"build:packages": "lerna exec yarn build",
"distribute": "yarn test && lerna publish",
"libdefs": "flow-typed install --overwrite",
"lint": "eslint ./src/** --ext js --cache --ignore-path .gitignore",
"lint:fix": "prettier --write './src/**/*.js' --ignore-path .gitignore",
"postmerge": "yarn && yarn libdefs",
"precommit": "lint-staged",
"prepush": "yarn test",
"test": "yarn todo && yarn flow && yarn lint && jest",
"todo": "leasot ./src/**",
"watch": "webpack-dev-server --mode=development"
},
"lint-staged": {
"./src/**/*.{js,jsx}": [
"yarn lint:fix",
"git add"
],
"yarn.lock": [
"yarn libdefs",
"git add"
]
},
"dependencies": {
"@turf/helpers": "6.1.4",
"es6-promise": "4.2.5",
"mapbox-gl": "0.49.0",
"unfetch": "3.1.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-flow": "^7.0.0-beta.54",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-loader": "^8.0.0-beta.3",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-compat": "^2.5.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.76.0",
"flow-typed": "^2.5.1",
"husky": "^0.14.3",
"jest": "^23.4.1",
"leasot": "^6.3.0",
"lerna": "^2.11.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4"
},
"resolutions": {
"handlebars" : "^4.7.1",
"glob-parent": "5.1.2",
"trim-newlines":"4.0.1",
"dot-prop":"5.1.1",
"serialize-javascript":"3.1.0",
"braces":"2.3.1",
"merge":"2.1.1",
"mem":"4.0.0",
"minimist":"1.2.6",
"yargs-parser":"13.1.2",
"ssri":"6.0.2",
"ansi-regex":"5.0.1",
"node-forge":"1.3.0",
"node-notifier":"8.0.1",
"moment":"2.29.2"
}
}