-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.38 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
85
86
87
88
89
90
91
92
93
94
{
"name": "twenty",
"productName": "Twenty",
"description": "Customizable timer that reminds you to take eye breaks",
"version": "0.2.1",
"repository": "https://github.com/jalenng/twenty",
"url": "https://github.com/jalenng/twenty#readme",
"author": {
"name": "Jalen Ng",
"email": "null@null.com"
},
"license": "MIT",
"private": false,
"build": {
"appId": "jalenng.twenty",
"publish": {
"provider": "github"
},
"files": [
"build/**/*",
"node_modules/**/*",
"sounds/**/*",
"tray_assets/**/*"
],
"directories": {
"buildResources": "assets"
},
"asarUnpack": [
"sounds/**/*",
"trayAssets/**/*"
],
"win": {
"target": "nsis"
},
"mac": {
"category": "public.app-category.healthcare-fitness"
},
"linux": {
"target": "deb"
}
},
"dependencies": {
"@fluentui/react": "^8.87.1",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.1.0",
"electron-window-state": "^5.0.3",
"hazardous": "^0.3.0",
"node-powershell": "^4.0.0",
"react": "^17.0.2",
"react-circle": "^1.1.1",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"sound-play": "^1.1.0",
"win32-api": "^19.8.1"
},
"devDependencies": {
"concurrently": "^7.3.0",
"cross-env": "^7.0.3",
"electron": "^20.0.0",
"electron-builder": "^23.3.3",
"node-gyp": "^9.1.0",
"nodemon": "^2.0.19",
"standard": "^17.0.0"
},
"main": "./public/electron.js",
"homepage": "./",
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"electron-start": "electron .",
"electron-watch": "nodemon --exec npm run electron-start",
"electron-test": "cross-env NODE_ENV=test mocha",
"build": "npm run react-build && npm run electron-build",
"dev": "concurrently \"npm:react-start\" \"npm:electron-watch\"",
"test": "concurrently -s first -k \"npm:react-start\" \"npm:electron-test\"",
"lint": "standard --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}