-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
71 lines (71 loc) · 1.63 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
{
"version": "0.1.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "deepnotes-editor",
"author": "Mukesh Soni",
"module": "dist/deepnotes-editor.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/mukeshsoni/deepnotes-editor"
},
"bugs": {
"url": "https://github.com/mukeshsoni/deepnotes-editor/issues"
},
"homepage": "https://github.com/mukeshsoni/deepnotes-editor",
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/draft-js": "^0.10.43",
"@types/linkify-it": "^2.1.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"deep-equal": "^2.0.3",
"deep-object-diff": "^1.1.0",
"husky": "^4.2.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup-plugin-postcss": "^3.1.5",
"ts-jest": "^26.2.0",
"tsdx": "^0.13.2",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"dependencies": {
"@reach/menu-button": "^0.10.5",
"classnames": "^2.2.6",
"draft-js": "^0.11.6",
"escape-string-regexp": "^4.0.0",
"linkify-it": "^3.0.2",
"memoize-one": "^5.1.1"
}
}