-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.48 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-imageslides",
"version": "3.0.0",
"description": "A mobile friendly images viewer react component",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf dist-esm",
"dev": "npm run clean && node ./scripts/dev.js",
"ts-types": " tsc --emitDeclarationOnly --outDir lib",
"build": "rimraf lib && node ./esbuild.js && npm run ts-types",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"license": "MIT",
"files": [
"lib",
"src"
],
"keywords": [
"react",
"gallery",
"slides",
"picture",
"viewer",
"lightbox",
"typescript",
"hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/loadingwyn/react-imageViewer.git"
},
"author": "loadingwyn",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@storybook/react": "^6.3.5",
"@types/classnames": "^2.3.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"alloyfinger": "^0.1.16",
"babel-jest": "^27.0.6",
"esbuild": "^0.12.15",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"superstatic": "^7.1.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"peerDependencies": {
"alloyfinger": "^0.1.16",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {}
}