forked from gerhardsletten/react-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 KB
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
{
"name": "react-reader",
"version": "2.0.4",
"description": "A epub-reader for React powered by ePubJS",
"type": "module",
"main": "./dist/react-reader.umd.js",
"module": "./dist/react-reader.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build::app": "tsc -p tsconfig.prod.json && vite build",
"build": "tsc -p tsconfig.prod.json && vite build --config vite.config.lib.ts",
"prepare": "npm run build",
"build-vercel": "tsc -p tsconfig.prod.json && vite build --config vite.config.vercel.ts",
"preview": "vite preview",
"test": "npm run jest",
"jest": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"coverage": "npm run jest -- --coverage=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerhardsletten/react-reader.git"
},
"author": "Gerhard Sletten",
"license": "ISC",
"bugs": {
"url": "https://github.com/gerhardsletten/react-reader/issues"
},
"homepage": "https://react-reader.metabits.no",
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"epubjs": "^0.3.93",
"react-swipeable": "^7.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.16",
"classnames": "^2.3.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.17.0",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"use-local-storage-state": "^19.1.0",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.1"
}
}