-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
70
{
"name": "@eruptionjs/config",
"version": "0.4.0",
"description": "Opinionated configuration for EruptionJS projects",
"publishConfig": {
"access": "public"
},
"main": "index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./prettier": "./src/prettier.js",
"./typescript": "./src/typescript.json",
"./reset.d.ts": "./src/reset.d.ts",
"./eslint": "./src/eslint.js",
"./biome": "./src/biome.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eruptionjs/config.git"
},
"scripts": {
"format": "prettier --write .",
"typecheck": "tsc",
"lint": "eslint .",
"validate": "concurrently \"pnpm run format\" \"pnpm run lint\" \"pnpm run typecheck\""
},
"keywords": [
"eruption",
"eruptionjs",
"config",
"configuration",
"eslint",
"prettier",
"stylelint",
"lint-staged",
"biome"
],
"author": "Rai Siqueira <[email protected]> (https://eruptionjs.dev)",
"license": "MIT",
"dependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@total-typescript/ts-reset": "^0.6.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint-plugin-import-x": "^4.1.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-testing-library": "^6.3.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.9.0",
"typescript-eslint": "^8.3.0"
},
"devDependencies": {
"@types/react": "^18.3.4",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"pkg-pr-new": "^0.0.24",
"prettier": "^3.3.3",
"react": "^18.3.1",
"typescript": "^5.5.4"
},
"prettier": "./src/prettier.js",
"packageManager": "[email protected]"
}