forked from JustFly1984/react-google-maps-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.68 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
{
"name": "@react-google-maps/root",
"version": "1.9.10",
"private": true,
"description": "@react-google-maps API integration",
"license": "MIT",
"author": {
"name": "Alexey Lyakhov",
"email": "justfly1984@gmail.com",
"url": "https://github.com/JustFly1984"
},
"contributors": [
"Ignat Awwit <ignatius.awwit@gmail.com> (https://github.com/awwit)",
"Uri Klar <uriklar@gmail.com> (https://github.com/uriklar)",
"Ivan Konev <ivankonev@gmail.com> (https://github.com/ivankonev)",
"Daniel K. <klenicak@gmail.com> (https://github.com/fredyc)",
"Marc Ryan <ryanmq87@gmail.com> (https://github.com/inv8der)",
"Park Giwan <giwan.dev@gmail.com> (https://github.com/zprime0920)",
"Kevin Brown <kevin.brown@exogee.com> (https://github.com/thekevinbrown)"
],
"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",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"*.{ts|tsx}": [
"npx eslint --fix",
"tsc --noEmit --jsx react --esModuleInterop",
"git add -A"
]
},
"resolutions": {
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@googlemaps/react-wrapper": "1.1.11",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/react": "6.3.12",
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11",
"babel-loader": "8.2.3",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {}
}