-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@caedes/react-feature-flipping",
"version": "2.0.1",
"source": "src/index.tsx",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "parcel build",
"lint": "eslint --cache .",
"prepare": "husky install",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/caedes/react-feature-flipping.git"
},
"contributors": [
{
"name": "caedes",
"url": "https://github.com/caedes"
}
],
"engines": {
"node": "16 || 18"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-xss": "^0.1.12",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"parcel": "^2.6.2",
"prettier": "^2.8.8",
"prettier-package-json": "^2.8.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsc-files": "^1.1.3",
"typescript": "^5.1.3",
"vitest": "^0.31.0"
},
"peerDependencies": {
"react": ">=17.0.2 <=18.2"
},
"lint-staged": {
"*.{ts,tsx,json,md}": "prettier --write",
"**/*.ts?(x)": "tsc-files --noEmit"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:testing-library/react",
"plugin:security/recommended",
"plugin:xss/recommended",
"prettier"
],
"ignorePatterns": [
"dist",
"vitest.config.ts"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"react"
],
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
}
}
}
}
}