-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "react-codemirror-ts",
"version": "0.0.3",
"description": "Codemirror react wrapper made with typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atassis/react-codemirror-ts.git"
},
"keywords": [
"react",
"codemirror",
"editor",
"code",
"typescript"
],
"author": "Taymuraz Kaytmazov <[email protected]> (https://github.com/atassis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atassis/react-codemirror-ts/issues"
},
"homepage": "https://github.com/atassis/react-codemirror-ts#readme",
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/codemirror": "^5.60.8",
"@types/node": "^18.16.16",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^5.1.3"
},
"dependencies": {
"classnames": "^2.3.1",
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"codemirror": "^5 || ^6",
"react": "^18 || ^17"
}
}