-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "andaluh-electron",
"version": "1.1.0",
"license": "GPLv3",
"productName": "Andaluh transcriptor",
"description": "Transliterate spanish spelling to andaluz proposals",
"main": "electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/andalugeeks/andaluh-electron"
},
"author": {
"name": "Emilio Martinez Rivero",
"email": "emiliomartinezriv@gmail.com",
"url": "https://github.com/andalugeeks/andaluh-electron"
},
"homepage": "./",
"dependencies": {
"@andalugeeks/andaluh": "^1.1.4",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"dotenv": "^8.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"build": {
"extends": null,
"appId": "org.andalugeeks",
"artifactName": "andaluh-transcriptor-${version}-${arch}.${ext}",
"icon": "electron/static",
"files": [
"electron/**/*",
"build/**/*"
],
"linux": {
"description": "Andaluh transcriptor",
"category": "Utility",
"maintainer": "Emilio Martinez Rivero <emiliomartinezriv@gmail.com",
"executableName": "andaluh-transcriptor",
"target": [{
"target": "deb"
},
{
"target": "snap"
},
{
"target": "AppImage"
},
{
"target": "rpm"
}
]
}
},
"scripts": {
"build": "npm run build:react && npm run build:electron",
"build:electron": "electron-builder",
"build:react": "react-scripts build",
"lint:electron": "eslint -c electron/.eslintrc electron/",
"lint:react": "eslint -c src/.eslintrc src/",
"prebuild": "node tasks/prebuild.js",
"start:electron": "NODE_ENV=development nodemon node_modules/electron/cli.js electron/main.js",
"start:react": "react-scripts start",
"test:electron": "NODE_ENV=production electron electron/main.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^10.1.2",
"electron-builder": "^22.8.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.4",
"react-scripts": "3.4.3"
}
}