-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
100 lines (100 loc) · 2.89 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
{
"name": "react-editext",
"version": "5.0.0",
"description": "Editable Text Component for React Applications",
"keywords": [
"react",
"editable",
"editable text",
"editable content",
"contenteditable",
"content editable",
"inline edit"
],
"author": "alioguzhan",
"license": "MIT",
"repository": "alioguzhan/react-editext",
"main": "dist/index.min.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=12"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"start": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"coverage": "codecov -e TRAVIS_NODE_VERSION -f coverage/*.json",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:ci": "cross-env CI=1 jest",
"predeploy": "cd example && yarn install && yarn run build && cp _redirects build/",
"deploy": "gh-pages -d example/build",
"release": "standard-version",
"prepare": "husky install"
},
"peerDependencies": {
"react": ">=16"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"codecov": "^3.8.3",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prompt": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace-in-file": "^6.3.5",
"rollup": "^2.76.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"shelljs": "^0.8.5",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"typescript-plugin-css-modules": "^3.4.0"
},
"dependencies": {}
}