-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-grand-tour",
"version": "0.16.0",
"type": "module",
"description": "",
"main": "./dist/react-grand-tour.umd.cjs",
"module": "./dist/react-grand-tour.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"main": "./dist/react-grand-tour.umd.cjs",
"module": "./dist/react-grand-tour.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.ts.map",
"dist/**/*.cjs"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc && vite build",
"doctoc": "doctoc README.md",
"lint": "eslint src/ --ext ts,tsx"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:EitanElbaz/ReactGrandTour.git"
},
"author": "Eitan Elbaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/EitanElbaz/ReactGrandTour/issues"
},
"homepage": "https://github.com/EitanElbaz/ReactGrandTour",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^18.8.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^18.2.16",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.1.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vite": "^4.5.0"
},
"lint-staged": {
"src/**/!(*d.){js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}