-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "reactbc",
"version": "1.0.0",
"description": "Implementation of BroadcastChannel API in react to emit and subscribe any messages to a particular channel.",
"main": "index.js",
"private" : true,
"scripts": {
"postinstall": "npx husky install",
"husky:commit-msg": "npx husky add .husky/commit-msg \"npx --no-install commitlint --edit $1\"",
"build:watch" : "cd packages/react-web-broadcast-channel && yarn run build:watch",
"build" : "cd packages/react-web-broadcast-channel && yarn run build",
"example" : "cd packages/example && yarn run dev"
},
"keywords": [
"react",
"library",
"web",
"typescript"
],
"author": "jhony-24",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1"
},
"dependencies": {
"husky": "^5.2.0"
}
}