This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.76 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
{
"name": "@storis/prettier-config",
"version": "1.0.0",
"description": "STORIS prettier configuration",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext cjs,mjs,js,ts --cache && echo \"eslint: no lint errors\"",
"lint:fix": "eslint . --ext cjs,mjs,js,ts --fix --cache && echo \"eslint: no lint errors\"",
"lint:nocache": "eslint . --ext cjs,mjs,js,ts && echo \"eslint: no lint errors\"",
"lint:clear": "rimraf ./.eslintcache",
"prettier": "prettier . --ignore-unknown --check",
"prettier:fix": "prettier . --ignore-unknown --write",
"style:fix": "npm-run-all prettier:fix lint:fix",
"test": "npm-run-all --parallel prettier lint",
"test:unit": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/STORIS/prettier-config.git"
},
"keywords": [
"prettier"
],
"author": "STORIS",
"license": "MIT",
"bugs": {
"url": "https://github.com/STORIS/prettier-config/issues"
},
"homepage": "https://github.com/STORIS/prettier-config#readme",
"engines": {
"node": "^16.0.0 || ^18.0.0"
},
"peerDependencies": {
"prettier": ">=2.5.0"
},
"devDependencies": {
"@storis/eslint-config": "3.2.0",
"@storis/tsconfig": "1.0.0",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-babel-module": "5.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.9.0",
"husky": "8.0.3",
"jest": "28.1.3",
"lint-staged": "12.5.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.2",
"typescript": "4.9.4"
}
}