This repository was archived by the owner on Feb 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.92 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
69
70
71
72
73
74
75
{
"name": "notes",
"version": "0.0.3",
"main": "main.js",
"author": {
"email": "yamialeks@gmail.com",
"name": "Shinru"
},
"homepage": "",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "concurrently npm:dev:*",
"dev:app": "parcel --public-url './' -d app-dist app/index.html",
"dev:electron": "electron .",
"publish": "parcel build --public-url './' -d app-dist app/index.html && electron-builder"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"concurrently": "^5.0.2",
"electron": "^7.1.6",
"electron-builder": "^21.2.0",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^1.4.1"
},
"dependencies": {
"draft-js": "^0.11.3",
"draft-js-alignment-plugin": "^2.0.6",
"draft-js-block-breakout-plugin": "^2.0.1",
"draft-js-buttons": "^2.0.2",
"draft-js-drag-n-drop-plugin": "^2.0.4",
"draft-js-emoji-plugin": "^2.1.3",
"draft-js-focus-plugin": "^3.0.1",
"draft-js-linkify-plugin": "^2.0.2",
"draft-js-plugins-editor": "^3.0.0",
"draft-js-static-toolbar-plugin": "^3.0.1",
"draft-js-undo-plugin": "^2.0.3",
"draftjs-to-html": "^0.9.1",
"immutable": "^3.8.2",
"modern-css-reset": "^1.0.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-feather": "^2.0.3",
"react-router-dom": "^5.1.2",
"redux-zero": "^5.1.1",
"uuid": "^3.3.3"
},
"postcss": {
"modules": true
},
"build": {
"appId": "shinru.notes",
"files": [
"!node_modules",
"app-dist/**/*",
"assets/**/*",
"package.json",
"main.js"
],
"directories": {
"output": "release-builds",
"buildResources": "assets"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"mac": {
"category": "public.app-category.productivity",
"darkModeSupport": true
}
}
}