-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.48 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-cloudinary-image-lite",
"version": "1.1.1",
"description": "React image component to build responsive WebP and AVIF image sets from Cloudinary assets, using density or resolution switching and blurred prealoading image placeholder",
"main": "dist/cjs/bundle.js",
"module": "dist/esm/bundle.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"clean": "rimraf dist",
"coverage:badge": "coverage-badge-creator",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"husky:configure": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\" && npx husky add .husky/commit-msg \"npx --no-install commitlint --edit \"$1\"\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"prebuild": "npm run clean",
"release:dry": "release-it --dry-run",
"release": "release-it",
"test": "jest --coverage",
"test:watch": "jest --watch",
"storybook:build": "storybook build",
"storybook:dev": "storybook dev -p 6006",
"storybook:serve": "cd storybook-static && http-server -p 6006"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint",
"npm run format",
"npm run test"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit $1"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/catarizea/react-cloudinary-image-lite.git"
},
"keywords": [
"react",
"cloudinary",
"image",
"responsive",
"density",
"resolution"
],
"author": "Catalin Rizea",
"license": "ISC",
"bugs": {
"url": "https://github.com/catarizea/react-cloudinary-image-lite/issues"
},
"homepage": "https://github.com/catarizea/react-cloudinary-image-lite#readme",
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@release-it/conventional-changelog": "8.0.1",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@storybook/addon-essentials": "7.6.7",
"@storybook/addon-interactions": "7.6.7",
"@storybook/addon-links": "7.6.7",
"@storybook/blocks": "7.6.7",
"@storybook/react": "7.6.7",
"@storybook/react-webpack5": "7.6.7",
"@storybook/test": "7.6.7",
"@testing-library/jest-dom": "6.1.6",
"@testing-library/react": "14.1.2",
"@types/jest": "29.5.11",
"@types/node": "20.10.6",
"@types/react": "18.2.46",
"@typescript-eslint/eslint-plugin": "6.17.0",
"coverage-badge-creator": "1.0.19",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-storybook": "0.6.15",
"http-server": "14.1.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.0",
"prettier": "3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"release-it": "17.0.1",
"rimraf": "5.0.5",
"rollup": "4.9.2",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"storybook": "7.6.7",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}