-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
34 lines (34 loc) · 947 Bytes
/
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
{
"name": "@pietile-native-kit/pietile-native-kit",
"version": "1.0.0",
"description": "Set of React Native components",
"license": "MIT",
"private": true,
"scripts": {
"prettify": "prettier --write 'packages/*/src/**/*.{ts,tsx}' && eslint 'packages/*/src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/react-native": "~0.69.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "~8.20.0",
"eslint-config-airbnb": "~19.0.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "~4.6.0",
"prettier": "~2.7.0",
"rimraf": "~3.0.0"
},
"workspaces": {
"packages": [
"packages/*",
"example"
],
"nohoist": [
"pietile-native-kit-example",
"pietile-native-kit-example/**"
]
}
}