-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "Notes",
"version": "0.1.0",
"description": "no description",
"author": {
"name": "Juliusz Jakubowski",
"email": "[email protected]"
},
"main": "src/main.js",
"build": {
"appId": "com.thej.notes",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"homepage": "./",
"dependencies": {
"connected-react-router": "^4.3.0",
"date-fns": "^1.29.0",
"electron-is-dev": "^0.3.0",
"electron-react-devtools": "^0.5.3",
"electron-settings": "^3.2.0",
"history": "^4.7.2",
"lodash": "^4.17.10",
"markdown-to-jsx": "^6.6.8",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-ace": "^6.1.3",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-observable": "^1.0.0",
"redux-thunk": "^2.3.0",
"shortid": "^2.2.12",
"styled-components": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"react-build": "react-scripts build",
"electron-build": "electron-builder",
"electron-pack": "electron-builder -c.extraMetadata.main = build / electron.js",
"preelectron-pack": "yarn build",
"build": "yarn react-build && yarn electron-build"
},
"devDependencies": {
"electron": "^2.0.3",
"electron-builder": "20.19.2"
},
"private": true,
"prettier": {
"singleQuote": true,
"jsxBracketSameLine": true
}
}