-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.61 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
{
"name": "draft-js-rte",
"description": "A wysiwyg using DraftJS.",
"version": "0.0.9",
"private": true,
"keywords": [
"draftjs",
"editor",
"react",
"richtext"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"webpack": "webpack",
"dev": "npm run webpack -- --mode development --watch",
"build": "npm run webpack -- --mode production",
"build-types": "tsc -d --emitDeclarationOnly --outDir types",
"format": "eslint --ext tsx --ext ts src --fix",
"lint": "eslint --ext tsx --ext ts src && tsc --noEmit",
"test": "yarn test:coverage",
"test:coverage": "jest src --coverage",
"test:coverage:ci": "jest src --ci --coverage",
"test:watch": "npm run test -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romainleduc/draft-js-rte.git"
},
"author": "Romain Leduc <KiziKr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/romainleduc/draft-js-rte/issues"
},
"homepage": "https://github.com/romainleduc/draft-js-rte#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/draft-js": "^0.11.4",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^6.2.0",
"draft-js": "^0.11.7",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.2.0",
"path": "^0.12.7",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"typescript": "^4.0.5",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
},
"peerDependencies": {
"draft-js": "^0.11.7",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"publishConfig": {
"directory": "lib"
},
"dependencies": {
"clsx": "^1.1.1",
"immutable": "^4.0.0-rc.12",
"prop-types": "^15.7.2",
"react-is": "^17.0.2",
"terser-webpack-plugin": "^4.2.2"
}
}