-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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": "trpc-limiter-root",
"version": "1.0.0",
"private": true,
"license": "ISC",
"author": "OrJDev",
"type": "module",
"scripts": {
"build": "turbo run build --filter=./packages/**/*",
"clean": "turbo clean && rm -rf node_modules pnpm-lock.yaml",
"dev": "turbo dev",
"dev:packages": "turbo dev --filter=./packages/*",
"lint": "eslint . --fix --ext .ts,.tsx,.js,.jsx",
"prepare": "husky install"
},
"lint-staged": {
"package.json": "sort-package-json"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"sort-package-json": "^2.1.0",
"tsup": "^6.5.0",
"turbo": "^1.13.2",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
}
}