-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "MarkdownNotes",
"productName": "Markdown notes",
"version": "0.1.0",
"license": "MIT",
"description": "Markdown notes app",
"author": "Liam Kelly",
"main": "public/main.js",
"homepage": "./",
"private": true,
"dependencies": {
"@skidding/react-codemirror": "^1.0.1",
"electron-is-dev": "^0.3.0",
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-highlight": "^0.10.0",
"react-markdown": "^2.5.0",
"react-scripts": "1.0.14",
"react-split-pane": "^0.1.66"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron-start": "electron .",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "build --em.main=build/main.js",
"preelectron-pack": "yarn build"
},
"devDependencies": {
"concurrently": "^3.5.0",
"electron": "^1.7.9",
"electron-builder": "^19.37.2",
"wait-on": "^2.0.2"
},
"build": {
"appId": "com.mook",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}