-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.6 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "messonry",
"version": "0.3.0",
"description": "A messy grid layout library for React. Like a masonry layout; except that it crops images as little as possible, and displays them as close to their original aspect ratio as possible.",
"author": "Nick Adamson",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/nickadamson/messonry/issues"
},
"homepage": "https://github.com/nickadamson/messonry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nickadamson/messonry.git"
},
"main": "src/index.ts",
"publishConfig": {
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts"
},
"files": [
"dist/src"
],
"scripts": {
"commit": "git-cz",
"lint": "eslint src/ tests/ --ext .ts,.tsx --config .eslintrc",
"test": "jest",
"dev": "start-storybook -p 6006",
"build": "pnpm prepack && rimraf ./dist/tests",
"prepack": "pnpm clean && tsc",
"clean": "rimraf ./dist",
"build:sb": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@emotion/jest": "^11.10.5",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-viewport": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^9.0.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"gh-pages": "^4.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"next": "^13.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"require-from-string": "^2.0.2",
"rimraf": "^3.0.2",
"storybook-addon-next": "^1.6.9",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,jsx,css,md}": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [
"react",
"grid",
"messy",
"masonry",
"aspect-ratio",
"portfolio",
"gallery"
],
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"pnpm": {
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"trim-newlines@<3.0.1": ">=3.0.1",
"glob-parent@<5.1.2": ">=5.1.2"
}
}
}