forked from nico-martin/markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.13 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "markdown-editor",
"version": "2.0.1",
"description": "A Markdown Editor PWA",
"repository": {
"type": "git",
"url": "[email protected]:nico-martin/markdown-editor.git"
},
"scripts": {
"dev": "npm run serve:dev & npm run build:dev",
"prod": "npm run build:prod",
"build:dev": "webpack -d --watch",
"build:prod": "webpack -p",
"serve:dev": "webpack-dev-server --open"
},
"dependencies": {
"@datapunt/matomo-tracker-react": "^0.3.1",
"@tinymce/tinymce-react": "^3.8.3",
"idb": "^5.0.8",
"preact": "^10.5.4",
"react-scroll-sync": "^0.8.0",
"showdown": "^1.9.1",
"turndown": "^7.0.0",
"unistore": "^3.5.2",
"unistore-hooks": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.7.1",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"favicons-webpack-plugin": "^3.0.1",
"fs": "0.0.1-security",
"glob-all": "^3.1.0",
"html-webpack-plugin": "^4.0.0-beta.11",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"prettier": "^1.19.1",
"prettier-stylelint": "^0.4.2",
"pretty-quick": "^2.0.0",
"purgecss-webpack-plugin": "^1.6.0",
"raw-loader": "^3.1.0",
"style-loader": "^1.1.3",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-prettier": "^1.1.1",
"terser-webpack-plugin": "^2.3.4",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-pwa-manifest": "^4.1.1",
"workbox-webpack-plugin": "^5.0.0"
},
"author": "Nico Martin - https://nico.dev",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/nico-martin/markdown-editor/issues"
},
"homepage": "https://gitlab.com/nico-martin/markdown-editor#README",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
],
"@babel/plugin-transform-runtime"
]
},
"browserslist": [
"> 1%",
"IE 11"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}