forked from JustFly1984/react-google-maps-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.61 KB
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
{
"name": "@react-google-maps/root",
"version": "1.7.7",
"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)"
],
"repository": {
"type": "git",
"url": "https://github.com/JustFly1984/react-google-maps-api"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"build:api": "cd packages/react-google-maps-api && yarn build && cd ../..",
"build:docs": "cd packages/react-google-maps-api && yarn docs:build && cd ../..",
"build:clusterer": "cd packages/react-google-maps-api-marker-clusterer && yarn build && cd ../..",
"build:infobox": "cd packages/react-google-maps-api-infobox && yarn build && cd ../..",
"build:gatsby": "cd packages/react-google-maps-api-gatsby-example && 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": "lerna run lint --scope=@react-google-maps/api --stream",
"storybook": "lerna run start --scope=@react-google-maps/storybook --stream"
},
"lint-staged": {
"*.{js|ts|tsx}": [
"npx eslint --fix",
"tsc --noEmit --jsx react --esModuleInterop",
"git add -A"
]
},
"devDependencies": {
"eslint": "5.16.0",
"@types/react-dom": "16.9.0",
"@types/googlemaps": "3.37.6",
"@typescript-eslint/eslint-plugin": "2.2.0",
"@typescript-eslint/parser": "2.2.0",
"acorn": "6.2.1",
"husky": "3.0.5",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"lerna": "3.16.4",
"lint-staged": "9.2.5",
"react": "16.9.0",
"react-dom": "16.9.0",
"ts-jest": "24.1.0",
"tsdx": "0.9.2",
"typescript": "3.6.3",
"rimraf": "3.0.0",
"webpack": "4.40.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}