-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
{
"version": "0.0.0",
"private": true,
"scripts": {
"build:packages": "pnpm run --recursive --filter \"./packages/**\" build",
"build:apps": "pnpm run --recursive --filter \"./apps/**\" build",
"build": "pnpm run build:packages && pnpm run build:apps",
"start": "pnpm run build:packages && cd apps/web && pnpm run start",
"eslint:fix": "eslint --fix \"**/*.{ts,tsx}\"",
"eslint:lint": "eslint \"**/*.{ts,tsx}\"",
"test": "pnpm run --recursive test"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"prettier": "^2.8.4",
"react": "^18",
"react-dom": "^18",
"typescript": "^4.9.5",
"vite": "^4",
"vitest": "^0.29.2"
}
}