-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "input-plus-one",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"babel-plugin-inline-dotenv": "^1.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "^1.4.2",
"typescript": "*"
},
"scripts": {
"native": "cd apps/expo && yarn start",
"web": "cd apps/next && yarn next",
"commit": "cz",
"lint": "yarn eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write \"packages/**/*.{ts,tsx} apps/**/*.{ts,tsx}\""
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/react-instantsearch": "^6.10.1",
"algoliasearch": "^4.17.0",
"react-instantsearch-hooks": "^6.44.0",
"react-native-render-html": "^6.3.4"
}
}