RenaiApp/package.json

114 lines
4.0 KiB
JSON
Raw Normal View History

2019-03-10 20:16:18 +01:00
{
2019-06-07 00:35:19 +02:00
"name": "renai",
"productName": "Renai-dev",
"version": "0.0.1",
"description": "Hentai Library Thingy",
2019-06-05 00:47:05 +02:00
"private": true,
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
"name": "Xymorot",
"email": "xymorot@mailbox.org"
},
"main": "src/main.js",
"engines": {
"node": "12"
},
2019-03-10 20:16:18 +01:00
"scripts": {
"postinstall": "npm run rebuild",
"postupdate": "npm run rebuild",
"start": "electron . --enable-logging --env=dev",
"rebuild": "electron-rebuild -f -b -o better-sqlite3",
"electron-version": "electron scripts/electron-version.js",
"typeorm:migrate": "npm run typeorm:migrate:library && npm run typeorm:migrate:store",
"typeorm:migrate:library": "typeorm migration:run -c library",
"typeorm:migrate:store": "typeorm migration:run -c store",
"build:webpack": "webpack --config scripts/webpack.config.js",
"dev:webpack": "webpack --config scripts/webpack.config.js --mode development -w",
"build:index": "node scripts/buildfile.js",
"dev:index": "node scripts/buildfile.js --watch --dev",
"build:ts": "tsc",
"dev:ts": "tsc -w --pretty --preserveWatchOutput",
"build": "concurrently -c green,yellow,cyan -n webpack,index,typescript \"npm run build:webpack\" \"npm run build:index\" \"npm run build:ts\"",
"dev": "concurrently -c green,yellow,cyan -n webpack,index,typescript \"npm run dev:webpack\" \"npm run dev:index\" \"npm run dev:ts\"",
"test:fast": "electron-mocha --config .mocharc.json --grep \"@slow\" --invert",
"test": "electron-mocha --config .mocharc.json",
"coverage": "nyc npm run test",
"prelint": "eslint-config-prettier src/main.ts",
"lint": "eslint ./**/*.* --max-warnings 0",
"lint:fix": "eslint ./**/*.* --fix",
"prettier": "prettier -c **/*.*",
"prettier:fix": "prettier --write **/*.*",
"fix": "npm run lint:fix && npm run prettier:fix",
"forge:make": "electron-forge --platform win32 --arch x64 make",
"forge": "npm audit --production --audit-level=high && npm run build && npm run forge:make",
"precommit": "npm run prettier && npm run lint && npm run build && npm run test:fast",
"prepush": "npm run build && npm run coverage"
},
"dependencies": {
"better-sqlite3": "^7.1.2",
"electron-squirrel-startup": "^1.0.0",
2021-01-24 19:54:28 +01:00
"fs-extra": "^9.1.0",
"inversify": "^5.0.1",
"minimist": "^1.2.5",
"reflect-metadata": "^0.1.13",
2021-01-24 19:54:28 +01:00
"typeorm": "^0.2.30",
"uuid": "^8.3.2"
2019-03-10 20:16:18 +01:00
},
"devDependencies": {
2020-11-09 18:30:30 +01:00
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@types/better-sqlite3": "^5.4.1",
2020-11-09 18:30:30 +01:00
"@types/chai": "^4.2.14",
"@types/chai-fs": "^2.0.2",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/fs-extra": "^9.0.6",
"@types/glob": "^7.1.3",
"@types/minimist": "^1.2.1",
"@types/mocha": "^8.2.0",
2021-01-24 19:54:28 +01:00
"@types/node": "^12.19.15",
"@types/sinon": "^9.0.10",
2020-11-09 18:30:30 +01:00
"@types/uuid": "^8.3.0",
2021-01-24 19:54:28 +01:00
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
2021-01-24 19:54:28 +01:00
"chokidar": "^3.5.1",
2020-11-09 18:30:30 +01:00
"concurrently": "^5.3.0",
"deep-equal-in-any-order": "^1.0.28",
2021-01-24 19:54:28 +01:00
"electron": "^10.3.0",
"electron-mocha": "^10.0.0",
"electron-rebuild": "^2.3.4",
2021-01-24 19:54:28 +01:00
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
2020-11-09 18:30:30 +01:00
"eslint-plugin-import": "^2.22.1",
2021-01-24 19:54:28 +01:00
"fast-check": "^2.12.0",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
2021-01-24 19:54:28 +01:00
"husky": "^4.3.8",
2020-11-09 18:30:30 +01:00
"lodash": "^4.17.20",
"mocha": "^8.2.1",
2021-01-24 19:54:28 +01:00
"nock": "^13.0.6",
2020-06-07 01:30:47 +02:00
"nyc": "^15.1.0",
"prettier": "^2.2.1",
2021-01-24 19:54:28 +01:00
"sinon": "^9.2.4",
"svelte": "^3.31.2",
"svelte-loader": "^3.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
2021-01-24 19:54:28 +01:00
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"repository": "https://git.fuwafuwa.moe/Xymorot/RenaiApp",
"bugs": "https://git.fuwafuwa.moe/Xymorot/RenaiApp/issues",
"config": {
"forge": "scripts/forge.config.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run prepush"
}
}
2019-03-10 20:16:18 +01:00
}