-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "@ovos-media/coding-standard",
"version": "3.0.0",
"description": "ovos-media coding standard",
"main": "index.js",
"types": "index.d.ts",
"author": "ovos",
"license": "MIT",
"repository": "https://github.com/ovos/coding-standard",
"homepage": "https://github.com/ovos/coding-standard",
"scripts": {
"prepublish": "npm run build",
"lint": "eslint .",
"build": "tsc -p ./tsconfig.json"
},
"dependencies": {
"@stylistic/eslint-plugin": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@typescript-eslint/utils": "^8.22.0",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "^9.19.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "npm:eslint-plugin-import-x@^4.6.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "5.0.0 || ^5.2.0",
"globals": "^15.14.0"
},
"devDependencies": {
"@types/eslint-plugin-mocha": "10.4.0",
"@types/node": "22.10.10",
"prettier": "3.4.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18.18"
},
"files": [
"/eslint.js",
"/eslint.d.ts",
"/index.js",
"/index.d.ts",
"/prettier.js",
"/prettier.d.ts"
]
}