-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.46 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.46 KB
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
{
"name": "frontend",
"version": "1.0.0",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"android": "yarn workspace @frontend/mobile android",
"web": "yarn workspace @frontend/web dev",
"lint": "yarn workspaces run lint:fix",
"lint:format": "yarn workspaces run format:fix && yarn workspaces run lint:fix",
"unix:refresh": "/bin/rm -rf node_modules && /bin/rm -rf packages/*/node_modules && yarn -i",
"windows:refresh": "powershell -Command \"Remove-Item -Recurse -Force node_modules, packages/*/node_modules; yarn install\""
},
"packageManager": "yarn@1.22.22",
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"typescript": "5.0.4"
}
}