-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.05 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
{
"name": "react-split-mde",
"version": "0.3.4",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": "16.x"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.config.js --host 0.0.0.0 --port 3031",
"build": "webpack --mode production && cp index.html ./dist/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/**.{ts,tsx}' --fix",
"clean": "rm -rf ./lib",
"tsc": "npm run clean && tsc --project ./tsconfig.prod.json",
"patch": "npm run tsc && npm version patch && npm publish && npm run clean",
"minor": "npm run tsc && npm version minor && npm publish && npm run clean",
"major": "npm run tsc && npm version minor && npm publish && npm run clean"
},
"keywords": [],
"author": "steelydylan",
"license": "MIT",
"dependencies": {
"@types/highlight.js": "^9.12.4",
"eventmit": "^1.1.0",
"highlight.js": "^10.2.0",
"morphdom": "^2.6.1",
"react-textarea-autosize": "^8.3.0",
"use-eventmit": "^1.0.3",
"xss": "^1.0.8"
},
"peerDependencies": {
"zenn-markdown-html": "^0.1.70"
},
"devDependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"css-loader": "^4.3.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.8.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.4",
"null-loader": "^4.0.0",
"p-event": "^4.2.0",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.4",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^3.0.3",
"zenn-markdown-html": "^0.1.70"
}
}