-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.28 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
66
67
68
{
"name": "react-webpack",
"version": "1.0.0",
"description": "an app to make notes from markdown",
"main": "main.js",
"scripts": {
"start": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.prod.js",
"electron": "electron .",
"package": "electron-packager . markdown-notes --overwrite --asar=true --platform=linux --arch=x64 --prune=true --out=release-builds",
"deb": "electron-installer-debian --src release-builds/markdown-notes-linux-x64 --dest release-builds/installer/ --arch amd64"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"codemirror": "^5.39.2",
"font-awesome": "^4.7.0",
"react": "^16.4.1",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.4.1",
"react-markdown": "^3.4.1"
},
"devDependencies": {
"asar": "^0.14.3",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"brotli-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^1.1.12",
"css-loader": "^1.0.0",
"devtron": "^1.4.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"electron": "^2.0.8",
"electron-devtools-installer": "^2.2.4",
"electron-installer-debian": "^0.8.1",
"electron-packager": "^12.1.1",
"elemon": "^5.0.3",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"github-markdown-css": "^2.10.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"styled-components": "^3.4.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}