-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "book-manager",
"version": "1.0.1",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"license": "MIT",
"url": "http://book-manager.bdtechies.com",
"email": "[email protected]",
"author": "Shahidul Islam Majumder <[email protected]> (https://shahid.pro/)",
"description": "A simple personal library management application.",
"productName": "Book Manager",
"scripts": {
"start": "concurrently 'npm run react-start' 'wait-on http://localhost:3000/ && npm run electron-start'",
"start:win": "concurrently \"npm run react-start\" \"wait-on http://localhost:3000/ && npm run electron-start:win\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-start": "electron .",
"electron-start:win": ".\\node_modules\\electron\\dist\\electron.exe .",
"react-start": "react-scripts start",
"premake": "npm run build",
"premake:all": "npm run build",
"make": "build --x64 -c.extraMetadata.main=build/electron.js",
"make:all": "build -mwl --x64 -c.extraMetadata.main=build/electron.js"
},
"build": {
"appId": "com.bdtechies.book-manager",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public/assets"
},
"linux": {
"category": "Utility",
"target": [
"deb",
"AppImage"
]
},
"win": {
"icon": "assets/icons/icon.ico",
"target": [
"nsis"
]
},
"mac": {
"category": "public.app-category.utilities",
"icon": "assets/icons/icon.icns",
"target": [
"dmg"
]
}
},
"dependencies": {
"@material-ui/core": "^3.2.2",
"@sh4hids/react-scripts": "1.1.8",
"draft-js": "^0.10.5",
"draftjs-to-html": "^0.8.4",
"electron-is-dev": "^0.3.0",
"html-to-draftjs": "^1.4.0",
"html-to-text": "^4.0.0",
"mdi-react": "^4.0.0",
"nedb-promises": "^3.0.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-draft-wysiwyg": "^1.12.13",
"react-quill": "^1.3.1",
"react-spinkit": "^3.0.0",
"redux-thunk": "^2.3.0",
"styled-system": "^3.0.2"
},
"devDependencies": {
"concurrently": "^3.6.0",
"electron": "3.0.2",
"electron-builder": "^20.28.4",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"wait-on": "^2.1.0"
}
}