-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.06 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
{
"name": "teamotes",
"version": "1.1.0",
"description": "Your app to use emotes and memes anywhere.",
"main": "electron/index.js",
"scripts": {
"electron": "electron dist",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "npm run build:vue && npm run build:electron",
"build:vue": "cross-env NODE_ENV=production webpack --production",
"build:electron": "cross-env NODE_ENV=production node ./prebuild && electron-builder"
},
"keywords": [],
"author": "André Weller <[email protected]> (https://lost.design/)",
"license": "MIT",
"dependencies": {
"mime-types": "^2.1.27",
"sharp": "^0.25.4",
"vue": "^2.6.11",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@tailwindcss/ui": "^0.5.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"electron": "^9.0.0",
"electron-builder": "^22.8.0",
"electron-devtools-installer": "^3.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.2.1",
"tailwindcss": "^1.6.2",
"vue-loader": "^15.9.3",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"build": {
"npmRebuild": true,
"appId": "com.teamotes",
"win": {
"icon": "assets/icon.png",
"target": [
"nsis"
],
"publish": {
"provider": "github",
"owner": "lostdesign",
"repo": "teamotes"
}
},
"mac": {
"target": [
"dmg"
],
"publish": {
"provider": "github",
"owner": "lostdesign",
"repo": "teamotes"
}
},
"linux": {
"maintainer": "André Weller <[email protected]> (https://lost.design/)",
"target": [
"deb"
],
"publish": {
"provider": "github",
"owner": "lostdesign",
"repo": "teamotes"
}
},
"directories": {
"app": "dist",
"output": "build"
}
}
}