-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "configs",
"keywords": [
"configs",
"development",
"lint",
"format",
"prettier",
"eslint",
"markdown"
],
"license": "MIT",
"author": {
"name": "Emmanuel Beaudry Marchand",
"url": "https://github.com/emmbm"
},
"type": "module",
"scripts": {
"format": "npm run lint:fix && npm run prettier:fix",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript-eslint": "^8.19.1"
}
}