-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "@truefit/bach",
"version": "2.5.1",
"description": "compose your react components in style",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"build": "yarn format && yarn lint && yarn clean-build && yarn compile",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git@github.com:TrueFit/bach.git"
},
"authors": [
"jgretz",
"jjgillespie",
"stephen776"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueFit/bach/issues"
},
"browserslist": [
"defaults"
],
"homepage": "https://github.com/TrueFit/bach#readme",
"peerDependencies": {
"react": "18.x"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/react": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}