-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "@switchdreams/lint-config",
"version": "0.0.3",
"main": "index.mjs",
"author": "PedroAugustoRamalhoDuarte <pedroaugustorduarte@gmail.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/SwitchDreams/lint-config.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"type": "module",
"scripts": {
"lint": "eslint ."
},
"exports": {
".": "./index.mjs",
"./prettier": "./prettier.mjs"
},
"dependencies": {
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8"
},
"devDependencies": {
"eslint": "^9.0.0",
"tailwindcss": "^3.4.14"
},
"peerDependencies": {
"tailwindcss": "^3.4.14"
}
}