generated from adonyssantos/fullstack-monorepo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.7 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
{
"name": "root",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"client:test": "yarn workspace @root/client test",
"format:check": "prettier --check . --ignore-path .gitignore --ignore-path .prettierignore",
"format:fix": "prettier --write . --ignore-path .gitignore --ignore-path .prettierignore",
"lint:check": "eslint --ext .ts,.tsx,.js,.jsx --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .ts,.tsx,.js,.jsx --ignore-path .gitignore .",
"mobile": "yarn workspace mobile start",
"mobile:android": "yarn workspace mobile android",
"mobile:ios": "yarn workspace mobile ios",
"server:test": "yarn workspace @root/server test",
"test": "npx nx run-many --target=test --all --parallel",
"web": "npx nx run dev --project=web",
"web:build": "npx nx run build --project=web",
"web:preview": "npx nx run preview --project=web"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/node": "18.15.0",
"@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",
"next": "13.2.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",
"vitest": "0.31.0"
},
"packageManager": "[email protected]"
}