-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@blgc/config",
"version": "0.0.27",
"private": false,
"description": "Builder.Group's engineering style guide",
"keywords": [],
"homepage": "https://builder.group/?source=github",
"bugs": {
"url": "https://github.com/builder-group/monorepo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/builder-group/monorepo.git"
},
"license": "MIT",
"author": "@bennobuilder",
"exports": {
"./eslint/*": "./eslint/*.js",
"./vite/*": "./vite/*.mjs",
"./prettier": "./prettier/index.js",
"./typescript/base": "./typescript/tsconfig.base.json",
"./typescript/library": "./typescript/tsconfig.library.json",
"./typescript/next": "./typescript/tsconfig.next.json",
"./typescript/node20": "./typescript/tsconfig.node20.json",
"./typescript/react-internal": "./typescript/tsconfig.react-internal.json"
},
"files": [
"eslint",
"vite",
"prettier",
"typescript",
"README.md"
],
"scripts": {
"clean": "shx rm -rf dist && shx rm -rf node_modules && shx rm -rf .turbo",
"install:clean": "pnpm run clean && pnpm install",
"publish:patch": "pnpm version patch && pnpm publish --no-git-checks --access=public",
"update:latest": "pnpm update --latest"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@next/eslint-plugin-next": "^15.1.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-turbo": "^2.3.3",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript-eslint": "^8.18.1",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}