-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
62
63
64
65
66
67
68
69
{
"$schema": "https://json.schemastore.org/package",
"name": "@nerdfish/config",
"version": "0.0.0-semantically-released",
"description": "Foundation configuration for nerdfish web projects",
"keywords": [
"config",
"eslint",
"prettier",
"typescript",
"nerdfish"
],
"license": "MIT",
"author": "Daren Malfait <[email protected]> (https://nerdfish.be/)",
"type": "module",
"exports": {
".": "./index.js",
"./prettier": "./prettier.js",
"./biome": "./biome.json",
"./typescript": "./typescript.json",
"./reset.d.ts": "./reset.d.ts",
"./eslint": "./eslint.js"
},
"main": "index.js",
"scripts": {
"checks": "npm-run-all --parallel lint typecheck",
"clean": "rm -rf node_modules .turbo",
"format": "prettier . --check --cache --cache-location=\"node_modules/.cache/prettiercache\"",
"format:fix": "prettier . --write --cache --cache-location=\"node_modules/.cache/prettiercache\" --log-level=warn",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"prepare": "husky",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@eslint/compat": "^1.2.3",
"@next/eslint-plugin-next": "^15.1.4",
"@total-typescript/ts-reset": "^0.6.1",
"@vitest/eslint-plugin": "^1.1.10",
"eslint-plugin-import-x": "^4.4.2",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.4.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.12.0",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tslib": "^2.8.1",
"typescript-eslint": "^8.14.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/react": "^18.3.12",
"eslint": "^9.15.0",
"husky": "^9.1.6",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}