-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 965 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": "@kensho-technologies/prettier-config",
"version": "3.0.0",
"description": "Shared Prettier config used across Kensho projects",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.12.0"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"fix": "prettier -w . && eslint --fix .",
"test": "tsc && prettier -c . && eslint ."
},
"prettier": ".",
"repository": "kensho-technologies/prettier-config",
"author": "Kensho Technologies, LLC.",
"license": "Apache-2.0",
"peerDependencies": {
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@kensho-technologies/babel-preset": "^22.0.0",
"@kensho-technologies/eslint-config": "^27.0.0",
"@kensho-technologies/tsconfig": "^5.0.0",
"@types/react": "^18.3.3",
"eslint": "^8.57.0",
"react": "^18.3.1",
"typescript": "~5.1.6"
}
}