-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.33 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.33 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "dr-json",
"description": "Manage JSON files by using JSON Schemas",
"homepage": "https://github.com/innogames/dr-json",
"license": "MIT",
"author": {
"name": "Innogames GmbH"
},
"version": "0.22.2",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "jest",
"electron": "electron dist/compiled/main.js",
"dev": "concurrently \"yarn run dev-main\" \"yarn run dev-renderer\" \"wait-on http://localhost:3000 && yarn run electron\"",
"dev-main": "webpack --config-name main --mode=development --env env=dev --env devServerPort=3000",
"dev-renderer": "webpack-dev-server --config-name renderer --mode=development --env env=dev --env devServerPort=3000",
"compile": "webpack --mode=production",
"create-icons": "electron-icon-maker --input=./build/icons/icon-src.png --output=./build/",
"dist-win": "rimraf dist && yarn run compile && electron-builder -w",
"dist": "rimraf dist && yarn run compile && electron-builder -m && ./build/scripts/zip-files.sh"
},
"main": "./dist/compiled/main.js",
"build": {
"productName": "Dr. Json",
"appId": "de.innogames.foe.dr-json",
"files": [
"dist/compiled"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icons/mac/icon.icns",
"target": "dmg"
},
"dmg": {
"icon": "build/icons/mac/icon.icns",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"portable"
],
"icon": "build/icons/win/icon.ico"
}
},
"dependencies": {
"@types/react-select": "5.0.1",
"electron-store": "^8.0.1",
"fs-extra": "10.0.0",
"inversify": "^6.0.1",
"json-2-csv": "^5.5.1",
"mobx": "^4.0.0",
"mobx-react": "^5.0.0",
"query-string": "7.0.1",
"react": "^16.0.2",
"react-dom": "^16.0.0",
"react-jsonschema-form": "1.8.1",
"react-select": "5.2.1",
"reflect-metadata": "0.1.13",
"sass": "^1.83.4",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@electron/remote": "^2.0.1",
"@types/electron-debug": "2.1.0",
"@types/electron-settings": "4.0.0",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"@types/query-string": "6.3.0",
"@types/react-dom": "^16.0.0",
"@types/react-jsonschema-form": "1.7.7",
"concurrently": "6.4.0",
"css-loader": "6.5.1",
"dependency-rules-webpack-plugin": "^0.1.1",
"electron": "16.0.4",
"electron-builder": "^24.11.0",
"electron-icon-maker": "0.0.5",
"html-webpack-plugin": "5.5.0",
"jest": "27.4.3",
"mini-css-extract-plugin": "^2.4.5",
"rimraf": "3.0.2",
"sass-loader": "12.3.0",
"style-loader": "3.3.1",
"ts-jest": "27.1.0",
"ts-loader": "9.2.6",
"typescript": "4.5.2",
"wait-on": "6.0.0",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.6.0"
},
"electronWebpack": {
"title": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}