-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.63 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@epic-web/config",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-semantically-released",
"description": "Reasonable ESLint configs for epic web devs",
"main": "index.js",
"type": "module",
"imports": {
"#/*": "./*"
},
"exports": {
".": "./index.js",
"./prettier": "./prettier.js",
"./typescript": "./typescript.json",
"./reset.d.ts": "./reset.d.ts",
"./eslint": "./eslint.js"
},
"prettier": "./prettier.js",
"scripts": {
"format": "prettier . --write",
"lint": "eslint .",
"typecheck": "tsc",
"validate": "run-p -l format lint typecheck"
},
"keywords": [
"config",
"eslint",
"prettier",
"typescript",
"epic"
],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"repository": {
"type": "git",
"url": "https://github.com/epicweb-dev/config"
},
"homepage": "https://github.com/epicweb-dev/config",
"license": "MIT",
"dependencies": {
"@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-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.4.0",
"globals": "^15.12.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"tslib": "^2.8.1",
"typescript-eslint": "^8.14.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"eslint": "^9.14.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"typescript": "^5.6.3"
}
}