-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 KB
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
71
{
"name": "@eruptionjs/config",
"version": "0.7.0",
"description": "Opinionated configuration for EruptionJS projects",
"publishConfig": {
"access": "public"
},
"main": "./src/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\"",
"upgrade": "pnpx npm-check-updates --interactive --format group --install never"
},
"keywords": [
"eruption",
"eruptionjs",
"config",
"configuration",
"eslint",
"prettier",
"stylelint",
"lint-staged",
"biome"
],
"author": "Rai Siqueira <me@raisiqueira.io> (https://eruptionjs.dev)",
"license": "MIT",
"dependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@total-typescript/ts-reset": "^0.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"eslint-plugin-import-x": "^4.10.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^16.0.0",
"typescript-eslint": "^8.29.0"
},
"devDependencies": {
"@types/react": "^19.0.12",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"pkg-pr-new": "^0.0.42",
"prettier": "^3.5.3",
"react": "^19.1.0",
"typescript": "^5.8.2"
},
"prettier": "./src/prettier.js",
"packageManager": "pnpm@10.7.1"
}