-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.63 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
{
"name": "cedit",
"version": "1.1.0",
"repository": "[email protected]:hiukky/cedit.git",
"author": "Romullo <[email protected]>",
"description": "📝 A simple way to edit content in react.",
"homepage": "https://hiukky.github.io/cedit",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "rollup -c",
"sb:server": "start-storybook -p 6006",
"sb:build": "build-storybook",
"sb:deploy": "gh-pages -d storybook-static",
"test": "jest",
"test:cov": "jest --coverage --watchAll",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.41",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"add": "^2.0.6",
"autoprefixer": "^10.4.4",
"esbuild": "^0.14.27",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-postcss": "^4.0.2",
"storybook-addon-sass-postcss": "^0.1.0",
"styled-components": "^5.3.3",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"yarn": "^1.22.18"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"dist"
],
"keywords": [
"html",
"html5",
"slim",
"input",
"react",
"editable",
"contenteditable",
"content editable",
"react-hooks",
"react-contenteditable",
"react-content-editable"
]
}