NWJS_Hour_Tracking/package.json

155 lines
5.3 KiB
JSON
Raw Normal View History

2019-07-08 07:32:03 -06:00
{
2019-11-07 06:10:09 -07:00
"ManifestComments": [
"Only add dependencies that you want shipped to the end user, for everything else, use devDependencies, including things that will be bundled by webpack.",
"NW.js requires a name and a main, everything else is optional.",
2019-12-26 22:53:31 -07:00
"The build section is used by nwjs-builder-phoenix, see its documentation for more info",
2019-11-11 17:20:46 -07:00
"To turn spell checking off, remove it from the chromium-args in this file"
2019-11-07 06:10:09 -07:00
],
2019-07-08 07:32:03 -06:00
"name": "nw-vue",
2019-12-26 22:53:31 -07:00
"version": "1.3.0",
2019-07-08 07:32:03 -06:00
"main": "http://localhost:8964",
"node-remote": "http://localhost:8964",
"node-main": "",
"window": {
"width": 960,
"height": 600,
"min_width": 700,
"min_height": 500,
"icon": "src/assets/vue.png"
},
"private": true,
"scripts": {
2019-09-15 17:18:39 -06:00
"start": "concurrently \"npm run serve\" \"wait-on http://localhost:8964 && nw .\"",
2019-07-08 07:32:03 -06:00
"serve": "vue-cli-service serve --port=8964",
"build": "npm run build:clean && npm run build:vue && npm run build:nw",
"build:clean": "rimraf ./dist-vue ./dist",
"build:vue": "vue-cli-service build --modern --dest ./dist-vue",
2019-07-09 07:35:38 -06:00
"build:nw": "build --concurrent --tasks win-x86,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
2019-09-16 07:09:45 -06:00
"build:win": "npm run build:win:clean && npm run build:vue && build --tasks win-x86 --mirror https://dl.nwjs.io/ .",
"build:lin": "npm run build:lin:clean && npm run build:vue && build --tasks linux-x64 --mirror https://dl.nwjs.io/ .",
2019-12-26 22:53:31 -07:00
"build:win:clean": "rimraf ./dist-vue ./dist/nw-vue-1.3.0-win-x86 ./dist/nw-vue-1.3.0-win-x86.zip ./dist/nw-vue-1.3.0-win-x86.7z ./dist/nw-vue-1.3.0-win-x86-Setup.exe",
"build:lin:clean": "rimraf ./dist-vue ./dist/nw-vue-1.3.0-linux-x64 ./dist/nw-vue-1.3.0-linux-x64.zip",
"run:win": "dist\\nw-vue-1.3.0-win-x86\\nw-vue.exe",
"run:lin": "./dist/nw-vue-1.3.0-linux-x64/nw-vue",
2019-09-16 07:09:45 -06:00
"regression": "rd /s /q node_modules & rd /s /q node_modules & rd /s /q node_modules & npm install && npm run lint && npm test && npm run build:win && npm run run:win",
2019-07-08 07:32:03 -06:00
"lint": "vue-cli-service lint --no-fix",
"fix": "vue-cli-service lint --fix",
2019-09-15 22:49:40 -06:00
"test": "npm run test:unit",
2019-07-08 07:32:03 -06:00
"test:e2e": "vue-cli-service test:e2e",
2019-10-29 10:53:13 -06:00
"test:unit": "jest --config jest.config.js --coverage --runInBand",
2019-11-07 06:37:00 -07:00
"validate": "npm run lint && npm run test:unit && npm run build:vue",
2019-11-11 17:20:23 -07:00
"update:vue-devtools": "rimraf ./node_modules/nw-vue-devtools-prebuilt && npm install"
2019-07-08 07:32:03 -06:00
},
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
2020-01-19 06:02:52 -07:00
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-e2e-nightwatch": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.1.2",
2019-07-08 07:32:03 -06:00
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
2019-09-01 17:02:25 -06:00
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
2019-09-15 22:49:40 -06:00
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-vue-app": "^2.0.0",
2019-12-26 21:11:26 -07:00
"concurrently": "^5.0.2",
2020-01-19 06:02:52 -07:00
"core-js": "^3.6.4",
2019-12-26 21:11:26 -07:00
"eslint": "^6.8.0",
2019-10-29 09:55:40 -06:00
"eslint-config-tjw-base": "^1.0.0",
"eslint-config-tjw-vue": "^1.0.0",
2020-01-19 06:02:52 -07:00
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-vue": "^6.1.2",
2019-12-26 20:37:19 -07:00
"eslint-plugin-vue-a11y": "^0.0.31",
2019-09-15 22:49:40 -06:00
"jest": "^24.9.0",
2019-10-29 10:25:15 -06:00
"jest-environment-jsdom": "^24.9.0",
2019-09-15 22:49:40 -06:00
"jest-environment-jsdom-global": "^1.2.0",
2020-01-19 06:04:38 -07:00
"jest-serializer-vue-tjw": "^3.3.0",
2019-09-15 22:49:40 -06:00
"jest-transform-stub": "^2.0.0",
2020-01-19 06:02:52 -07:00
"nw": "0.43.6-sdk",
2019-11-11 17:20:23 -07:00
"nw-vue-devtools-prebuilt": "^0.0.10",
2019-07-08 07:32:03 -06:00
"nwjs-builder-phoenix": "^1.15.0",
"nwjs-types": "^1.0.0",
2019-09-01 17:02:25 -06:00
"rimraf": "^3.0.0",
2019-12-26 21:11:26 -07:00
"vue": "^2.6.11",
2019-09-15 22:49:40 -06:00
"vue-jest": "^3.0.5",
2019-12-26 21:11:26 -07:00
"vue-template-compiler": "^2.6.11",
2020-01-19 06:02:52 -07:00
"wait-on": "^4.0.0"
2019-07-08 07:32:03 -06:00
},
2019-11-11 17:20:23 -07:00
"chromium-args": "--enable-spell-checking --load-extension='./node_modules/nw-vue-devtools-prebuilt/extension'",
2019-07-08 07:32:03 -06:00
"build": {
2019-12-26 22:53:31 -07:00
"nwVersion": "v0.43.2",
2019-07-08 07:32:03 -06:00
"nwFlavor": "normal",
"targets": [
"zip",
"nsis7z"
],
"files": [
"**/*"
],
"excludes": [
"e2e/**/*",
"src/**/*",
"tests/**/*",
2019-07-09 07:35:38 -06:00
"public/**/*",
"dist-vue/**/*.js.map",
"dist-vue/**/*.css.map",
"dist-vue/**/*-legacy*",
2019-07-08 07:32:03 -06:00
".browserslistrc",
".eslintrc",
".gitignore",
".editorconfig",
"babel.config.js",
2019-12-26 22:53:31 -07:00
"CODE_OF_CONDUCT.md",
2019-07-08 07:32:03 -06:00
"cypress.json",
"jest.config.js",
"nightwatch.conf.js",
"nightwatch.json",
"package-lock.json",
"screenshot.png",
"selenium-debug.log",
"postcss.config.js",
"vue.config.js"
],
"strippedProperties": [
2019-12-26 22:53:31 -07:00
"ManifestComments",
2019-07-08 07:32:03 -06:00
"scripts",
"devDependencies",
"build"
],
"overriddenProperties": {
"main": "http://localhost:8965",
"node-remote": "http://localhost:8965",
2019-11-07 06:02:01 -07:00
"node-main": "server.js",
2019-12-26 22:53:31 -07:00
"chromium-args": "--enable-spell-checking",
"window": {
"width": 960,
"height": 600,
"min_width": 700,
"min_height": 500,
"icon": "dist-vue/vue.png"
}
2019-07-08 07:32:03 -06:00
},
"win": {
2019-09-16 07:09:45 -06:00
"icon": "public/icon-256.ico"
2019-07-08 07:32:03 -06:00
},
"mac": {
"icon": "public/icon.icns"
},
"nsis": {
2019-09-16 07:09:45 -06:00
"icon": "public/icon-256.ico",
2019-07-08 07:32:03 -06:00
"unIcon": "public/icon.ico",
"languages": [
"English"
],
"diffUpdaters": false,
"hashCalculation": true
}
}
}