forked from Zertz/react-headless-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "react-headless-tabs",
"version": "4.0.2",
"license": "MIT",
"author": "Pier-Luc Gendreau",
"repository": "github:Zertz/react-headless-tabs",
"homepage": "https://react-headless-tabs.pierluc.io/",
"source": "src/index.tsx",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"test": "tsc && jest",
"lint": "eslint . --ext ts,tsx",
"start": "parcel watch",
"build": "parcel build",
"prepublishOnly": "yarn test && yarn build"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@parcel/packager-ts": "^2.2.1",
"@parcel/transformer-typescript-types": "^2.2.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.7",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "4.5.5"
},
"peerDependencies": {
"react": ">=16.8"
},
"private": true,
"workspaces": [
"docs"
],
"files": [
"dist",
"src"
]
}