-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 2.15 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
{
"name": "react-photo-grid",
"version": "1.4.11",
"description": "Show images in a grid like facebook does. Useful to show a preview of main images when many are uploaded.",
"main": "dist/index.js",
"module": "dist/react-photo-grid.esm.js",
"typings": "dist/ReactPhotoGrid.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build --entry ./src/ReactPhotoGrid.tsx",
"clean": "nwb clean-module && npx clean-demo",
"start": "nwb serve-react-demo",
"deploy": "gh-pages -d demo/dist",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"keywords": [
"react-photo-grid",
"react-image-grid",
"react-component",
"reactjs",
"react",
"resizable image grid"
],
"author": "Mukesh Soni <mukeshsoni@gmail.com>",
"repository": "https://github.com/mukeshsoni/react-photo-grid",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.7.0",
"generate-changelog": "^1.8.0",
"gh-pages": "^2.2.0",
"nwb": "^0.24.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-syntax-highlighter": "^12.2.1",
"tsdx": "^0.13.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=0.14.0 || ^16.3.1",
"react-dom": ">=0.14.0 || ^16.3.1"
},
"dependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7"
}
}