forked from massif-press/compcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.62 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
106
107
108
109
110
111
112
113
114
115
{
"name": "compcon",
"version": "2.1.7",
"description": "A digital toolkit for the LANCER TTRPG",
"license": "GPL-3.0-or-later",
"author": "Massif Press",
"scripts": {
"build": "webpack --env.platform=web --env.prod",
"dev": "webpack-dev-server --progress --env.platform=web",
"electron:build": "webpack --env.platform=electron --env.prod && node ./build_scripts/sync-package-json.js && cd ./electron && electron-builder",
"electron:dev": "webpack-dev-server --progress --env.platform=electron",
"gen-schema": "node ./build_scripts/build-content-schema.js",
"int-test": "jest int",
"unit-test": "jest unit",
"commit": "git-cz",
"release": "./build_scripts/release.sh"
},
"dependencies": {
"@capacitor/core": "^1.3.0",
"@mdi/font": "^4.8.95",
"axios": "^0.19.0",
"electron": "^9.0.0",
"jszip": "^3.2.2",
"lancer-data": "^3.0.1",
"lodash": "^4.17.11",
"material-icons": "^0.3.1",
"promisify-file-reader": "^3.0.5",
"tiptap-vuetify": "^2.12.0",
"typeface-roboto": "^0.0.75",
"typeit": "^6.0.3",
"vue-class-component": "^7.1.0",
"vue-mousetrap": "^1.0.1",
"vue-property-decorator": "^8.3.0",
"vue-resize-text": "^0.1.1",
"vue-router": "^3.0.6",
"vuedraggable": "^2.23.2",
"vuetify": "^2.3.6",
"vuex": "^3.1.0",
"vuex-module-decorators": "^0.10.1"
},
"devDependencies": {
"@aricchi/electron-vue-devtools": "^5.0.8-1",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@capacitor/cli": "^1.3.0",
"@types/jest": "^24.0.13",
"@types/jszip": "^3.1.6",
"@types/lodash": "^4.14.123",
"@types/node": "12",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@vue/test-utils": "^1.0.0-beta.30",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.0.5",
"core-js": "3",
"css-loader": "^3.0.0",
"cz-customizable": "^6.2.0",
"deepmerge": "^4.2.2",
"electron-builder": "^22.6.1",
"electron-reload": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-vue": "^6.1.2",
"eslint-plugin-vuetify": "^1.0.0-beta.5",
"favicons-webpack-plugin": "^2.0.0",
"fibers": "^4.0.2",
"file-loader": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^4.0.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-mock-random": "^1.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"raw-loader": "^4.0.0",
"sass": "1.24.2",
"sass-loader": "^8.0.0",
"source-map-support": "^0.5.10",
"standard-changelog": "^2.0.21",
"ts-jest": "^25.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"typescript-json-schema": "^0.42.0",
"vue": "^2.6.10",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"vuetify-loader": "^1.4.3",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-inject-plugin": "^1.5.3",
"webpack-merge": "^4.2.2",
"webpack-pwa-manifest": "^4.1.1",
"workbox-webpack-plugin": "^4.3.1",
"write-file-webpack-plugin": "^4.5.1"
},
"resolutions": {
"prosemirror-model": "1.8.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}