This repository has been archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.83 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
{
"name": "karmanor",
"version": "1.0.0",
"description": "An Electron app which builds source code from ArmA 3 PBOs and runs the game with the built PBOs and runs testing functionality.",
"main": "build/js/main.js",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"development:debug": "cross-env NODE_ENV=development VSCODE_DEBUG=true node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "electron .",
"pack": "node node_modules/electron-packager/cli.js ./build --out=dist/",
"pack:force": "node node_modules/electron-packager/cli.js ./build --out=dist/ --overwrite",
"pack:all": "node node_modules/electron-packager/cli.js ./build --out=dist/ --all",
"pack:all:force": "node node node_modules/electron-packager/cli.js ./build --out=dist/ --all --overwrite",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest --maxWorkers=4",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArmaAchilles/Karmanor.git"
},
"author": "ArmaAchilles",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ArmaAchilles/Karmanor/issues"
},
"homepage": "https://github.com/ArmaAchilles/Karmanor#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-typescript": "^7.4.5",
"@fortawesome/fontawesome-free": "^5.8.2",
"@types/chartist": "^0.9.46",
"@types/electron-devtools-installer": "^2.2.0",
"@types/extract-zip": "^1.6.2",
"@types/faker": "^4.1.5",
"@types/form-data": "^2.2.1",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/jquery": "^3.3.29",
"@types/jszip": "^3.1.6",
"@types/line-reader": "0.0.28",
"@types/lodash": "^4.14.132",
"@types/multiparty": "0.0.32",
"@types/tail": "^1.2.1",
"@types/webpack-env": "^1.13.9",
"animate.css": "^3.7.0",
"axios": "^0.19.0",
"babel-plugin-istanbul": "^5.1.4",
"bootstrap": "^4.3.1",
"bootstrap-material-design": "^4.1.2",
"chartist": "^0.11.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"electron": "^4.2.2",
"electron-devtools-installer": "^2.2.4",
"electron-packager": "^13.1.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"extract-zip": "^1.6.7",
"faker": "^4.1.0",
"form-data": "^2.3.3",
"fs-extra": "^8.0.1",
"jest": "^24.8.0",
"jquery": "^3.4.1",
"jszip": "^3.2.1",
"laravel-mix": "^4.0.15",
"line-reader": "^0.4.0",
"lodash": "^4.17.11",
"multiparty": "^4.2.1",
"node-sass": "^4.12.0",
"popper.js": "^1.15.0",
"ps-list": "^6.3.0",
"resolve-url-loader": "^2.3.2",
"sass": "^1.20.1",
"sass-loader": "^7.1.0",
"tail": "^2.0.2",
"tree-kill": "^1.2.1",
"ts-loader": "^5.4.5",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vue": "^2.6.10",
"vue-devtools": "^5.0.0-beta.1",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {}
}