-
Notifications
You must be signed in to change notification settings - Fork 440
/
package.json
105 lines (105 loc) · 3.1 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
{
"name": "react-images",
"version": "1.2.0-beta.7",
"description": "A mobile-friendly, highly customizable, carousel component for displaying media in ReactJS",
"main": "lib/index.js",
"jsnext:main": "dist/react-images.es.js",
"module": "dist/react-images.es.js",
"types": "./index.d.ts",
"author": "Joss Mackison",
"repository": {
"url": "https://github.com/jossmac/react-images"
},
"bugs": {
"url": "https://github.com/jossmac/react-images/issues"
},
"homepage": "https://jossmac.github.io/react-images/",
"license": "MIT",
"keywords": [
"react",
"images",
"carousel",
"lightbox",
"gallery",
"modal"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-plugin-react": "^7.22.0",
"flow-bin": "^0.123.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.5.1",
"istanbul": "^0.4.5",
"lint-staged": "^10.5.4",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-lorem-component": "^0.13.0",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^8.1.0",
"rollup": "^2.39.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"style-loader": "^1.3.0",
"uglify-es": "^3.3.9",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"a11y-focus-store": "^1.0.0",
"cross-env": "^7.0.3",
"glam": "^5.0.1",
"html-react-parser": "^1.2.4",
"raf-schd": "^4.0.2",
"react-focus-on": "^3.5.1",
"react-full-screen": "^1.0.1",
"react-transition-group": "^4.4.1",
"react-view-pager": "^0.6.0"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.2.0 || ^17.0.0",
"react-dom": "^16.2.0 || ^17.0.0"
},
"scripts": {
"build": "nps build",
"watch": "nps build.watch",
"delete": "rm -rf node_modules",
"lint": "cross-env eslint .",
"deploy": "cross-env NODE_ENV=production nps publish",
"start": "cross-env webpack-dev-server --progress",
"precommit": "cross-env flow check && lint-staged",
"prepublishOnly": "yarn lint && yarn format && nps build",
"format": "cross-env prettier --write \"**/*.{js,ts,jsx,tsx,json,yml,md}\"",
"format:check": "cross-env prettier --check \"**/*.{js,ts,jsx,tsx,json,yml,md}\""
},
"files": [
"dist",
"lib",
"src",
"index.d.ts"
],
"lint-staged": {
"*.js": "eslint"
}
}