-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
173 lines (173 loc) · 4.33 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "fspy",
"version": "1.1.0-beta.3",
"main": "build/main.js",
"homepage": "https://fspy.io",
"repository": {
"type": "git",
"url": "https://github.com/stuffmatic/fSpy.git"
},
"author": {
"name": "Per Gantelius",
"email": "[email protected]",
"url": "https://stuffmatic.com"
},
"description": "An open source, cross platform app for still image camera matching",
"license": "GPL-3.0",
"devDependencies": {
"@types/electron-window-state": "^2.0.33",
"@types/minimist": "^1.2.0",
"@types/jest": "^23.0.0",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.5",
"@types/react-measure": "^2.0.2",
"@types/react-redux": "^6.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"electron": "^8.2.1",
"electron-builder": "^22.4.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"jest-junit": "^5.0.0",
"standard": "^11.0.1",
"standard-loader": "^6.0.1",
"style-loader": "^0.21.0",
"trash-cli": "^1.4.0",
"ts-loader": "^4.3.1",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.9.1",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"prebuild-dev": "trash build",
"build-dev": "webpack --config webpack.config.js --mode development",
"prebuild-dist": "trash build",
"build-dist": "webpack --config webpack.config.js --mode production",
"predist": "yarn run build-dist",
"predist-preview": "yarn run build-dist",
"dist-preview": "electron-builder --dir",
"prebuild-test": "trash __tests__",
"build-test": "webpack --config webpack.tests.config.js --mode development",
"pretest": "yarn run build-test",
"dev-server": "webpack-dev-server --config webpack.config.js --content-base build/ --mode development",
"electron-dev": "DEV=true electron ./build/main.js",
"dist": "electron-builder -mwl",
"test": "jest",
"prepublish-release": "yarn build-dist",
"publish-release": "electron-builder -mwl --publish always"
},
"dependencies": {
"minimist": "^1.2.0",
"electron-window-state": "^4.1.1",
"konva": "^2.1.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-konva": "^1.7.4",
"react-measure": "^2.0.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"build": {
"publish": {
"provider": "github",
"repo": "fSpy",
"publishAutoUpdate": false
},
"productName": "fSpy",
"appId": "com.stuffmatic.fspy",
"mac": {
"target": "dmg",
"category": "public.app-category.utilities"
},
"linux": {
"target": [
"AppImage"
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": "x64"
},
{
"target": "nsis",
"arch": "ia32"
},
{
"target": "zip",
"arch": "x64"
},
{
"target": "zip",
"arch": "ia32"
}
]
},
"files": [
"build/**/*"
],
"extraResources": [
{
"from": "assets/electron",
"to": "",
"filter": [
"example.fspy"
]
},
{
"from": "assets/build",
"to": "",
"filter": [
"icon.ico"
]
},
{
"from": "assets/electron",
"to": "",
"filter": [
"icon.png"
]
},
{
"from": "assets/electron",
"to": "",
"filter": [
"icon.svg"
]
}
],
"directories": {
"buildResources": "assets/build"
},
"fileAssociations": [
{
"ext": "fspy",
"name": "fSpy project",
"description": "fSpy project file",
"role": "Editor"
}
]
},
"jest": {
"testRegex": "/__tests__/.*\\.jsx?",
"testResultsProcessor": "jest-junit"
},
"jest-junit": {
"suiteName": "jest tests",
"output": "./TEST-jest_junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"usePathForSuiteName": "true"
}
}