-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "biblo",
"description": "",
"version": "0.12.1",
"scripts": {
"build": "npm run build --workspaces",
"clean": "eslint --fix \"./{packages/*/src,example}/**/*.{ts,js}{,x}\" && prettier --write \"./*{packages/*/src,example}/**/*.{ts,tsx,js,jsx,json}\"",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"./{packages/*/src,example}/**/*.{ts,tsx,js,jsx,json}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/saxofonsolo/biblo.git"
},
"author": "Lars Munkholm",
"license": "MIT",
"bugs": {
"url": "https://github.com/saxofonsolo/biblo/issues"
},
"homepage": "https://biblo.saxofonsolo.dk/",
"workspaces": [
"packages/addons/simple-markup",
"packages/babel-plugin",
"packages/react-native"
],
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
}
}