-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "react-bootstrap4-modal",
"version": "3.0.0",
"description": "A simple Bootstrap 4 modal component in React",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/nbudin/react-bootstrap4-modal",
"author": "Nat Budin <[email protected]>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "vite build && tsc --declaration --outDir dist/ --emitDeclarationOnly --declarationMap",
"prepublishOnly": "yarn run build",
"lint": "eslint src",
"start": "vite dev",
"test": "vitest"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.0",
"@types/react-dom": "^18.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "2.1.4",
"@vitest/ui": "^2.1.4",
"eslint": "^9.14.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react": "^18.0",
"react-dom": "^18.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.1",
"vitest": "^2.1.4"
},
"peerDependencies": {
"react": "^18.0"
},
"dependencies": {
"classnames": "^2.3.1"
},
"packageManager": "[email protected]"
}