forked from formir/room-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "room-gallery",
"version": "1.3.1-dev",
"description": "Room Gallery: A 3D carousel - A Responsive 3D Image Slider Implemented in TypeScript as a React Component, Utilizing Vanilla JavaScript and jQuery",
"homepage": "https://formir.io/room-gallery/",
"keywords": [
"slider",
"carousel",
"gallery",
"exhibit",
"image",
"picture",
"jquery",
"react",
"component",
"typescript",
"javascript",
"3d",
"js",
"ts",
"html",
"sass",
"scss",
"formir",
"room",
"museum",
"exhibition",
"showcase",
"presentation",
"exposition",
"viewer",
"zoom",
"transitions",
"shifts",
"animation",
"room gallery"
],
"main": "./src/index",
"types": "./src/index.tsx",
"files": [
"dist/**/*",
"src/**/*"
],
"style": "./dist/RoomGallery.css",
"sass": "./src/RoomGallery.scss",
"repository": {
"type": "git",
"url": "git+https://github.com/formir/room-gallery.git"
},
"author": "Konrad Kubrak",
"email": "[email protected]",
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack serve --mode development --open",
"docs": "rm -rf docs && mkdir docs && cp public/*.** docs && mkdir docs/img && cp dist/*.** docs/ && cp dist/img/*.** docs/img && rm -rf dist/demo.** && rm -rf dist/index.* && rm -rf docs/*.d.**",
"build": "webpack --mode production && yarn docs",
"test": "jest"
},
"dependencies": {
"sass": "^1.66.1",
"react-swipeable": "^7.0.1",
"dompurify": "^3.0.5"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@types/dompurify": "^3.0.2",
"@types/jest": "^29.5.6",
"@types/jquery": "^3.5.19",
"@types/react": "^16 || ^17 || ^18",
"@types/react-dom": "^16 || ^17 || ^18",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"jquery": "^3.7.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"prettier": "3.0.3",
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
">0.2%",
"ie 11",
"not dead"
]
}