forked from waleedahmad/Snipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.21 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
{
"name": "snipper",
"version": "1.0.0",
"description": "Snipping tool build with Electron, React and Nodejs",
"main": "./app/build/app.js",
"scripts": {
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --config webpack/dev.config.js\" \"cross-env NODE_ENV=development electron ./app/src/main/app.js\"",
"prod": "cross-env NODE_ENV=production webpack --progress --color --config webpack/prod.config.js",
"start": "npm run prod && electron app/build/app.js",
"pack": "electron-builder --dir",
"dist": "npm run prod && electron-builder",
"server": "node ./server/server.js",
"postinstall": "electron-builder install-app-deps"
},
"author": {
"name" : "Waleed Ahmad",
"email" : "[email protected]",
"url" : "https://github.com/waleedahmad"
},
"license": "MIT",
"build": {
"productName": "Snipper",
"win": {
"target": "NSIS"
},
"linux": {
"target": [
"deb",
"AppImage"
]
},
"mac": {
"category": "public.app-category.developer-tools"
},
"directories": {
"output": "release"
}
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"electron": "^2.0.4",
"electron-builder": "^20.19.1",
"electron-devtools-installer": "^2.2.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"express": "^4.16.3",
"jimp": "^0.2.28",
"jquery": "^3.3.1",
"popper.js": "^1.14.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-rnd": "^8.0.2",
"spectre.css": "^0.5.3",
"uuid": "^3.3.2"
}
}