-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.55 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
{
"name": "todo",
"version": "0.0.3",
"description": "todo app",
"author": "edeity<edeity@gmail.com>",
"private": true,
"homepage": "./",
"main": "./public/electron.js",
"dependencies": {
"animate.css": "^3.7.2",
"classnames": "^2.2.6",
"cross-env": "^6.0.3",
"fast-json-stringify": "^1.15.3",
"gh-pages": "^2.0.1",
"node-mac-notifier": "^1.2.0",
"node-notifier": "^6.0.0",
"node-sass": "^4.11.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-beautiful-dnd": "^12.0.0",
"react-dom": "^16.8.6",
"react-scripts": "^3.2.0",
"react-transition-group": "^4.3.0",
"typescript": "^3.7.2"
},
"scripts": {
"start": "react-scripts start",
"clear": "cross-env rm -rf build && rm -rf dist ",
"build-web": "cross-env INLINE_RUNTIME_CHUNK=false react-scripts build",
"deploy": "gh-pages -d build",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "todo.edeity.me",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "favicon.ico"
},
"files": [
{
"from": "./",
"to": "./",
"filter": [
"**/*",
"!node_modules"
]
}
],
"directories": {
"buildResources": "public"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"electron": "^7.1.1",
"electron-builder": "^22.1.0"
}
}