forked from JustFly1984/react-google-maps-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.02 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
{
"name": "@react-google-maps/root",
"version": "1.8.7",
"private": true,
"description": "@react-google-maps API integration",
"license": "MIT",
"author": {
"name": "Alexey Lyakhov",
"email": "[email protected]",
"url": "https://github.com/JustFly1984"
},
"contributors": [
"Ignat Awwit <[email protected]> (https://github.com/awwit)",
"Uri Klar <[email protected]> (https://github.com/uriklar)",
"Ivan Konev <[email protected]> (https://github.com/ivankonev)",
"Daniel K. <[email protected]> (https://github.com/fredyc)",
"Marc Ryan <[email protected]> (https://github.com/inv8der)",
"Park Giwan <[email protected]> (https://github.com/zprime0920)"
],
"repository": {
"type": "git",
"url": "https://github.com/JustFly1984/react-google-maps-api"
},
"scripts": {
"build:api": "cd packages/react-google-maps-api && yarn && yarn build && cd ../..",
"build:docs": "cd packages/react-google-maps-api && yarn && yarn docs:build && cd ../..",
"build:clusterer": "cd packages/react-google-maps-api-marker-clusterer && yarn && yarn build && cd ../..",
"build:infobox": "cd packages/react-google-maps-api-infobox && yarn && yarn build && cd ../..",
"build:gatsby": "cd packages/react-google-maps-api-gatsby-example && yarn && yarn build && cd ../..",
"prebuild:docs": "yarn build:clusterer && yarn build:infobox",
"prebuild:gatsby": "yarn build:clusterer && yarn build:infobox && yarn build:api",
"start:gatsby": "cd packages/react-google-maps-api-gatsby-example && yarn start && cd ../..",
"prestart:gatsby": "yarn build:clusterer && yarn build:infobox && yarn build:api",
"clean": "rimraf ./yarn.lock ./package-lock.json ./node_modules/ && yarn"
},
"lint-staged": {
"*.{ts|tsx}": [
"npx eslint --fix",
"tsc --noEmit --jsx react --esModuleInterop",
"git add -A"
]
},
"devDependencies": {
"husky": "4.2.5",
"lint-staged": "10.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}