-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 2.38 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
{
"private": true,
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"test": "lerna run test --stream",
"test:web": "lerna run test --stream --concurrency=1 --scope web --",
"test:shared": "lerna run test --stream --concurrency=1 --scope shared --",
"test:sdc-qrf": "lerna run test --stream --concurrency=1 --scope sdc-qrf --",
"start": "lerna run --parallel start",
"start:web": "lerna run start --parallel --scope web",
"build": "lerna run --parallel build",
"build:web": "lerna run --parallel build --scope web",
"build:sdc-qrf": "lerna run --parallel build --scope sdc-qrf",
"typecheck": "lerna run --parallel typecheck",
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@react-native-community/eslint-config": "^3.0.1",
"@types/faker": "^6.6.9",
"@types/fhir": "^0.0.37",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react": "^4.0.3",
"caniuse-lite": "^1.0.30001518",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unused-imports": "^3.0.0",
"faker": "^6.6.6",
"husky": "^8.0.3",
"husky-init": "^8.0.0",
"lerna": "^7.1.4",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vitest": "^0.33.0"
},
"workspaces": {
"packages": [
"web",
"shared",
"sdc-qrf"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/react-native-navigation",
"**/react-native-navigation/**"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write"
}
}