-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 KB
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
{
"name": "@texttree/notepad-rcl",
"author": "TextTree.org",
"version": "3.0.0",
"description": "",
"keywords": [
"rcl",
"react",
"notepad"
],
"license": "MIT",
"private": false,
"main": "dist/index.js",
"url": "https://github.com/texttree/notepad-rcl",
"homepage": "https://github.com/texttree/notepad-rcl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/texttree/notepad-rcl.git"
},
"bugs": {
"url": "https://github.com/texttree/notepad-rcl/issues"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
],
"*.+(json|md)": [
"prettier --write"
]
},
"scripts": {
"prepare": "husky install",
"start": "styleguidist server",
"build": "styleguidist build",
"lint": "eslint --fix .",
"prettier": "prettier --write .",
"build:babel": "babel src --out-dir dist --ignore src/**/*.jsx",
"prepublishOnly": "rm -fr ./dist & yarn build:babel",
"precommit": "lint-staged"
},
"peerDependencies": {
"react": "^17.x || ^18.x",
"react-dom": "^17.x || ^18.x"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/preset-env": "7.25.3",
"@babel/preset-react": "7.24.7",
"@editorjs/header": "^2.8.5",
"babel-loader": "^9.1.3",
"editorjs-toggle-block": "^0.3.16",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-styleguidist": "^13.1.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@editorjs/editorjs": "^2.30.2",
"@editorjs/paragraph": "^2.11.6",
"editorjs-blocks-react-renderer": "^1.3.0",
"localforage": "^1.10.0",
"react-arborist": "3.4.0",
"react-editor-js": "^2.1.0"
}
}