This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
generated from carforyou/carforyou-example-pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
{
"name": "@carforyou/eslint-config",
"version": "0.0.0",
"description": "ESLint rules that we use at CAR FOR YOU",
"scripts": {
"version": "npm run build",
"build": "rimraf pkg && tsc -p tsconfig.json --outDir pkg",
"lint": "eslint --ext ts,js,tsx,jsx --ignore-pattern 'src/__tests__/*' .",
"format": "npm run lint -- --fix",
"test": "npm run build && ./src/__tests__/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carforyou/carforyou-eslint-config-pkg.git"
},
"author": "CAR FOR YOU",
"license": "MIT",
"homepage": "https://github.com/carforyou/carforyou-eslint-config-pkg#readme",
"dependencies": {
"@rushstack/eslint-patch": "1.6.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/eslint-plugin-tslint": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsdoc": "48.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "6.0.2",
"prettier": "2.8.8",
"tslint": "6.1.3"
},
"devDependencies": {
"@types/node": "18.19.18",
"jest": "29.7.0",
"jq-cli-wrapper": "1.6.1",
"rimraf": "5.0.5",
"semantic-release": "23.0.2",
"typescript": "5.3.3"
},
"main": "pkg/index.js",
"exports": {
"./prettier": "./pkg/prettier.js",
"./next": "./pkg/next.js",
"./react": "./pkg/react.js",
".": "./pkg/index.js"
},
"files": [
"pkg/**/*"
]
}