generated from fers4t/react-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.84 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
{
"name": "cloudinary-next-widget",
"description": "Next.js component for Cloudinary Upload Widget.",
"version": "0.2.1",
"author": "fers4t",
"license": "MIT",
"keywords": [],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "https://github.com/fers4t/cloudinary-next-widget"
},
"scripts": {
"build": "rm -rf ./dist && pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"dev": "concurrently \"pnpm build\" \"pnpm storybook\"",
"watch": "concurrently \"pnpm watch:esm\" \"pnpm watch:cjs\"",
"watch:esm": "tsc --watch",
"watch:cjs": "tsc --module CommonJS --outDir dist/cjs --watch",
"commit": "cz",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"release": "pnpm release-it"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.7",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"autoprefixer": "^10.4.12",
"concurrently": "7.4.0",
"eslint": "8.26.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.26.0",
"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-storybook": "0.6.7",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"next": "13.0.0",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"peerDependencies": {
"next": ">=13",
"react": ">=18",
"react-dom": ">=18",
"react-uuid": "^2.0.0"
},
"dependencies": {
"cz": "^1.8.2",
"release-it": "^15.5.1",
"scripts": "link:.."
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"access": "public",
"publishPath": "--registry https://registry.npmjs.org"
}
}
}