-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.22 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
{
"name": "source-me",
"version": "0.2.1",
"description": "A tool which provides necessary tools needed for web development",
"author": "Idrees Dargahwala",
"repository": {
"type": "git",
"url": "https://github.com/theIYD/source-me"
},
"license": "MIT",
"main": "main.js",
"scripts": {
"prod": "webpack --config webpack.build.config.js && electron --noDevServer .",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build": "webpack --config webpack.build.config.js",
"package": "webpack --config webpack.build.config.js",
"postpackage-win": "npm run build && electron-packager ./ --out=./builds --overwrite --platform=win32 --arch=ia32 --icon=src/assets/icons/win/iconWin.ico --prune=true && bestzip release-builds/source-me-win-x64.zip builds/source-me-win32-ia32",
"postpackage-linux": "npm run build && electron-packager ./ --overwrite --platform=linux --arch=x64 --icon=src/assets/icons/linux/iconLinux.png --prune=true --out=builds && bestzip release-builds/source-me-linux-x64.zip builds/source-me-linux-x64",
"postpackage-darwin": "npm run build && electron-packager ./ SourceMe --overwrite --ignore=electron-packager --platform=darwin --arch=x64 --icon=src/assets/icons/mac/iconMac.icns --prune=true --out=builds"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.1",
"electron": "^2.0.2",
"electron-packager": "^12.1.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.28.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@xkeshi/image-compressor": "^0.5.2",
"axios": "^0.17.0",
"bestzip": "^1.1.4",
"dotenv": "^4.0.0",
"file-saver": "^1.3.3",
"node-sass": "^4.9.0",
"node-url-shortener": "^1.0.1",
"react-modal": "^3.1.0",
"react-router-dom": "^4.2.2",
"react-spinners": "^0.2.1",
"react-tooltip": "^3.4.0",
"sass-loader": "^6.0.6",
"webfontloader": "^1.6.28"
}
}