generated from MiniHacks/geese
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "geese",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"private": true,
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"prepare": "yarn install; yarn workspaces foreach run prepare",
"dev": "yarn env-cmd yarn workspaces foreach -pi run dev",
"build": "yarn env-cmd yarn workspaces foreach -pi run build",
"start": "yarn env-cmd yarn workspaces foreach -pi run start",
"postinstall": "husky install",
"test": "echo \"tests completed\""
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"commitlint-plugin-function-rules": "^1.7.1",
"env-cmd": "^10.1.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.5.1"
},
"dependencies": {
"@react-native-firebase/database": "^17.4.2",
"native-base": "^3.4.28"
}
}