-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "react-boilerplate",
"version": "0.1.0",
"private": true,
"main": "index.js",
"scripts": {
"web": "yarn workspace web start",
"ios": "yarn workspace mobile ios",
"android": "yarn workspace mobile android",
"clean-android": "yarn workspace mobile clean-android",
"build-android": "yarn workspace mobile build-android",
"format": "prettier --write \"packages/**/*.{ts,tsx,json,css,scss,js,jsx}\"",
"test:coverage": "react-scripts test --coverage --watchAll=false",
"lint": "eslint . --ext js,jsx,mjs,ts,tsx ",
"lint:fix": "eslint . --ext js,jsx,mjs,ts,tsx --fix",
"lint:quiet": "eslint . --ext js,jsx,mjs,ts,tsx --quiet",
"prepare": "husky install",
"precommit": "npm run lint:fix && npm run format",
"prepush": "npm run lint"
},
"workspaces": {
"packages": [
"packages/**"
],
"nohoist": [
"**/mobile",
"**/mobile/**",
"**/database-watermelon/**",
"**/database-watermelon"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"react": "^18.2.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/runtime": "^7.20.13",
"@types/react": "^18.0.27",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lerna": "^6.5.1"
}
}