-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"name": "@teovilla/react-native-web-maps-root",
"version": "0.1.0",
"description": "Cross platform maps for react & react-native",
"main": "dist/commonjs/index",
"module": "dist/module/index",
"types": "dist/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"private": true,
"workspaces": {
"packages": [
"./packages/*",
"./example",
"./docs"
]
},
"scripts": {
"lint": "turbo run lint --filter @teovilla/*",
"test": "turbo run test --filter @teovilla/*",
"build": "turbo run build --filter @teovilla/*",
"dev": "turbo run dev",
"example": "yarn --cwd example",
"lib": "yarn --cwd packages/react-native-web-maps",
"docs": "yarn --cwd docs",
"prepare": "husky install",
"postinstall": "cd ./example && expo-yarn-workspaces postinstall",
"clear": "npx rimraf ./**/node_modules ./**/yarn.lock ./**/package-lock.json ./**/.next ./**/.turbo ./**/.expo ./**/dist"
},
"repository": "https://github.com/teovillanueva/react-native-web-maps",
"author": "Teodoro Villanueva <[email protected]> (https://github.com/teovillanueva)",
"license": "MIT",
"bugs": {
"url": "https://github.com/teovillanueva/react-native-web-maps/issues"
},
"homepage": "https://github.com/teovillanueva/react-native-web-maps#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@commitlint/config-conventional": "^17.0.2",
"@react-native-community/eslint-config": "^3.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^28.1.2",
"commitlint": "^17.0.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.0.5",
"turbo": "^1.3.1",
"typescript": "^4.9.4"
},
"resolutions": {
"@types/react": "~18.0.27"
},
"lint-staged": {
"packages/*/src/**/*.+(ts|tsx)": [
"eslint --fix"
],
"packages/*/src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
}
}