-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
32
33
34
35
36
37
{
"name": "@dry/monorepo",
"private": true,
"description": "Do not repeat yourself",
"author": "dev-robot",
"license": "MIT",
"scripts": {
"clean": "rimraf ./node_modules && pnpm -r clean",
"fresh": "pnpm clean && pnpm i",
"nuke": "rimraf pnpm-lock.yaml && pnpm fresh",
"format": "prettier",
"format:check": "pnpm format --check --debug-check",
"format:fix": "pnpm format --write",
"lint": "eslint --ext mjs,js,ts,tsx",
"lint:fix": "pnpm lint --fix"
},
"engines": {
"node": ">16.14.2",
"pnpm": ">=8.3.1",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"packageManager": "[email protected]",
"dependencies": {
"@dry/configs-eslint-ts": "workspace:^",
"@dry/configs-eslint-ts-react": "workspace:^",
"@dry/configs-prettier": "workspace:^",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4"
}
}