-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.05 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@smartive/eslint-config",
"version": "0.0.0-development",
"description": "ESLint configuration by smartive",
"files": [
"README.md",
"LICENSE",
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/smartive/eslint-config.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"eslint"
],
"author": "smartive AG <hello@smartive.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartive/eslint-config/issues"
},
"homepage": "https://github.com/smartive/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"typescript-eslint": "^8.15.0"
},
"peerDependencies": {
"eslint": "^9.22.0",
"eslint-config-next": "^16.0.0",
"next": "^16.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"eslint-config-next": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@eslint/js": "9.39.5",
"@smartive/prettier-config": "3.1.2",
"@types/node": "25.9.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.39.5",
"husky": "9.1.7",
"prettier": "3.9.6",
"typescript": "6.0.3"
},
"engines": {
"node": "^20.19.0 || >=22.12"
},
"scripts": {
"tsc": "tsc",
"prettier": "prettier --check .",
"check-types": "tsc --noEmit",
"build": "rm -rf dist && tsc",
"commitlint": "commitlint --edit",
"prepare": "[ ! -f node_modules/.bin/husky ] || husky"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}