-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
91 lines (91 loc) · 2.45 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
{
"version": "0.3.0",
"description": "medium like react tapable editor",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "rimraf dist/ && tsdx build --name react-tapable-editor --format esm,cjs,umd",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint --fix",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"examples:basic": "DIR=basic EXT=js webpack-dev-server"
},
"repository": {
"type": "git",
"url": "https://github.com/ryuever/react-tapable-editor"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-tapable-editor",
"author": "youchao liu",
"module": "dist/react-tapable-editor.esm.js",
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/draft-js": "^0.10.43",
"@types/immutable": "^3.8.7",
"@types/invariant": "^2.2.33",
"@types/prismjs": "^1.16.1",
"classnames": "^2.2.6",
"draft-js": "^0.11.0",
"immutable": "^4.0.0-rc.12",
"invariant": "^2.2.4",
"prismjs": "^1.21.0",
"sabar": "^0.5.4"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/react": "^16.9.42",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.5",
"postcss-loader": "^3.0.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"rollup-plugin-postcss": "^3.1.3",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.0",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
}
}