-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "root",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"mobile": "yarn lerna run start --scope mobile",
"mobile:android": "yarn lerna run android --scope mobile",
"mobile:ios": "yarn lerna run ios --scope mobile",
"web": "yarn lerna run dev --scope web",
"web:build": "yarn lerna run build --scope web",
"web:preview": "yarn lerna run preview --scope web"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "~8.36.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "1.1.5",
"lerna": "6.5.1",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.4",
"prisma": "^4.11.0",
"tslib": "^2.3.0",
"typescript": "^4.9.5",
"vite": "^4.1.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.1",
"@prisma/client": "^4.11.0"
}
}