forked from massif-press/compcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.55 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
{
"name": "compcon",
"version": "1.3.10",
"author": "Massif Press",
"description": "A digital toolkit for the LANCER TTRPG",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && BUILD_OS=local TRAVIS_BRANCH=build electron-builder",
"dist-travis": "yarn compile && electron-builder",
"lint": "eslint **/*.ts --ignore-pattern node_modules/",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"unit-test": "jest unit",
"int-test": "jest int"
},
"electronWebpack": {
"title": "COMP/CON v1.3.10",
"whiteListedModules": [
"vue",
"vuetify"
]
},
"build": {
"productName": "compcon",
"appId": "com.jarena.compcon",
"directories": {
"output": "build/"
},
"files": [
"dist/main/**/*",
"dist/renderer/**/*"
],
"mac": {
"icon": "icons/icon.icns",
"target": [
"zip"
]
},
"win": {
"icon": "icons/icon.ico",
"target": [
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"icon": "icons",
"target": [
{
"target": "AppImage"
}
],
"category": "Game"
}
},
"dependencies": {
"@mdi/font": "^3.6.95",
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.14.123",
"axios": "^0.18.0",
"electron-webpack-eslint": "^4.0.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"fs-extra": "^7.0.1",
"gist-client": "^1.1.0",
"imgur": "^0.3.1",
"lancer-data": "^1.9.2",
"lodash": "^4.17.11",
"material-icons": "^0.3.1",
"source-map-support": "^0.5.10",
"typeface-roboto": "^0.0.54",
"vue-mousetrap": "^1.0.1",
"vue-router": "^3.0.6",
"vue2-scrollspy": "^2.3.1",
"vuedraggable": "^2.20.0",
"vuetify": "^1.5.14",
"vuex": "^3.1.0",
"vuex-electron": "^1.0.3",
"xlsx": "^0.14.2"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"circular-dependency-plugin": "^5.0.2",
"electron": "4.0.1",
"electron-builder": "20.38.4",
"electron-webpack": "^2.6.2",
"electron-webpack-ts": "^3.1.1",
"electron-webpack-vue": "^2.2.3",
"eslint-plugin-html": "^5.0.3",
"jest": "^24.8.0",
"prettier": "^1.18.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"vue": "^2.6.10",
"webpack": "4.28.4"
}
}