-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 836 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 836 Bytes
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
{
"name": "@devoxa/prettier-config",
"description": "The shareable configuration for Prettier used in all Devoxa projects",
"version": "2.0.3",
"main": "prettier.config.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/prettier-config"
},
"scripts": {
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check ."
},
"prettier": "./prettier.config.js",
"dependencies": {
"prettier-plugin-organize-imports": "4.3.0"
},
"devDependencies": {
"@types/node": "20.9.5",
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"peerDependencies": {
"prettier": ">=2.4",
"typescript": ">=2.9"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0"
}
}