-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "mook",
"version": "0.1.0",
"author": "Tzahi Vidas",
"description": "Mook is a cross-platform Markdown book built with Electron and React",
"private": true,
"main": "public/main.js",
"homepage": "./",
"dependencies": {
"@skidding/react-codemirror": "^1.0.0",
"codemirror": "^5.29.0",
"electron-is-dev": "^0.3.0",
"install": "^0.10.1",
"lodash.assign": "^4.2.0",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-highlight": "^0.10.0",
"react-icons": "^2.2.7",
"react-markdown": "^2.5.0",
"react-scripts": "1.0.12",
"react-split-pane": "^0.1.66"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"pre_test": "react-scripts test --env=jsdom",
"test": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && mocha\"",
"eject": "react-scripts eject",
"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": "^5.0.2",
"electron-builder": "^19.26.3",
"mocha": "^5.0.5",
"spectron": "^3.8.0",
"wait-on": "^2.0.2"
},
"build": {
"appId": "com.mook",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"extraResources": [
"public/welcome.md"
]
}
}