-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.57 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
{
"name": "editorjs-examples",
"version": "0.0.0",
"private": true,
"description": "Examples of using Editor.js",
"repository": "[email protected]:hata6502/editorjs-examples.git",
"license": "CC0-1.0",
"author": "Tomoyuki Hata <[email protected]>",
"scripts": {
"fix": "prettier --write .",
"generate-disclaimer": "yarn licenses generate-disclaimer --ignore-platform > DISCLAIMER.md",
"license-checker": "license-checker --excludePackages '[email protected];[email protected];[email protected];[email protected];[email protected];[email protected];[email protected];[email protected];[email protected]' --excludePrivatePackages --onlyAllow 'Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;ISC;MIT;Public Domain;Unlicense;WTFPL' --production --unknown > /dev/null",
"test": "yarn license-checker && prettier --check . && tsc --noEmit"
},
"dependencies": {
"@editorjs/editorjs": "^2.19.1",
"fast-deep-equal": "^3.1.3",
"nanoid": "^3.1.20",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"license-checker": "^25.0.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}