-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
121 lines (121 loc) · 3.66 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
{
"name": "@anatoliygatt/heart-switch",
"version": "1.0.13",
"description": "A heart-shaped toggle switch component for React.",
"keywords": [
"react",
"component",
"react-component",
"toggle",
"switch",
"toggle-switch",
"accessible",
"javascript",
"typescript"
],
"homepage": "https://github.com/anatoliygatt/heart-switch#readme",
"bugs": "https://github.com/anatoliygatt/heart-switch/issues",
"repository": {
"type": "git",
"url": "https://github.com/anatoliygatt/heart-switch.git"
},
"license": "MIT",
"author": "Anatoliy Gatt",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "run-s build:*",
"build:esbuild": "ts-node scripts/build.ts",
"build:tsc": "tsc",
"commit": "git-cz",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ignore-path .gitignore",
"lint:prettier": "prettier --check . --ignore-path .gitignore",
"lint:tsc": "tsc --emitDeclarationOnly false --noEmit",
"prepare": "is-ci || husky install",
"semantic-release": "semantic-release",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.2.0",
"@emotion/jest": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^27.4.0",
"@types/jest-axe": "^3.5.3",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-loader": "^8.2.3",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^4.6.3",
"esbuild": "^0.15.15",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.0.5",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"jest-axe": "^6.0.0",
"lint-staged": "^13.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"sort-package-json": "^2.4.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"webpack": "^5.69.0"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public"
}
}