-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
77 lines (77 loc) · 2.19 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
{
"productName": "Alchemy",
"main": "main.js",
"engines": {
"node": ">=9.11"
},
"scripts": {
"start": "electron .",
"lint": "eslint ./src/",
"test": "jest",
"build": "webpack --mode=development",
"build:prod": "webpack --mode=production -p",
"package": "electron-packager . --platform=darwin,win32,linux --arch=x64 --out=packaged --icon=img/out.icns --overwrite",
"zip": "cd packaged/Alchemy-darwin-x64/ && zip -r -y ../Alchemy-mac.zip * && cd ../Alchemy-win32-x64 && zip -r -y ../Alchemy-win32.zip * && cd ..",
"release": "./bin/release.sh $1",
"fetch-photosorcery": "./bin/fetchPhotosorcery"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"babel-loader": "^8.0.0-beta",
"chai": "^3.5.0",
"chalk": "^2.4.1",
"css-loader": "^0.28.11",
"electron-packager": "^12.2.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"glob": "^7.1.2",
"jest": "^19.0.2",
"jest-cli": "^23.6.0",
"node-sass": "^4.13.1",
"release": "^4.0.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.21.0",
"webpack-cli": "^3.0.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"electron": "^9.4.0",
"execa": "^0.6.3",
"fs-extra": "^6.0.1",
"invariant": "^2.2.2",
"menubar": "^5.2.3",
"react": "^15.4.2",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.4.2",
"react-sortable-hoc": "^0.6.2",
"string": "^3.3.3",
"tmp": "^0.0.33"
},
"name": "alchemy",
"description": "Alchemy is a drag-and-drop file converter for your menubar.",
"version": "0.5.1",
"repository": {
"type": "git",
"url": "https://github.com/dawnlabs/alchemy.git"
},
"authors": [
"Michael Fix <@mfix22>",
"Jake Dexheimer <@jakedex>",
"Brian Dennis <@briandennis>"
],
"license": "MIT",
"keywords": [
"convert",
"files",
"images",
"drag-and-drop"
]
}