-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "@jeromefitz/eslint-config",
"version": "0.0.0",
"type": "module",
"description": "ESLint Configuration",
"repository": "jeromefitz/packages.git",
"author": {
"name": "Jerome Fitzgerald",
"email": "j@jeromefitzgerald.com",
"url": "https://jeromefitzgerald.com"
},
"license": "MIT",
"private": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm run clean && pnpm run copy",
"clean": "rm -rf .turbo && rm -rf dist",
"clean:install": "pnpm run clean && rm -rf node_modules",
"copy": "mkdir -p ./dist && ./scripts/copy.sh",
"dev": "echo '# tsdown --watch'",
"semantic-release": "semantic-release",
"semantic-release:dry": "semantic-release --dry-run"
},
"dependencies": {
"@babel/core": "7.28.5",
"@babel/eslint-parser": "7.28.5",
"@eslint/compat": "2.0.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"eslint": "9.39.2",
"eslint-plugin-jest": "29.12.1",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-playwright": "2.4.1",
"eslint-plugin-storybook": "9.1.17",
"eslint-plugin-testing-library": "7.15.4",
"is-ci": "4.1.0",
"typescript-eslint": "8.52.0"
},
"devDependencies": {
"@types/lodash": "4.17.23",
"lodash": "4.17.23",
"storybook": "9.1.17",
"tailwindcss": "4.1.18",
"typescript": "5.9.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false
}