unpixel/package.json

76 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2021-04-06 15:03:44 +02:00
{
"private": true,
"name": "unpixel",
"productName": "UnPixel",
"description": "Help your eyes take a break",
"author": {
"name": "Niccolo Borgioli",
"email": "hi@nicco.io",
"url": "https://nicco.io"
},
2021-04-06 16:49:08 +02:00
"repository": {
"url": "https://github.com/cupcakearmy/unpixel"
},
2022-01-09 18:45:16 +01:00
"version": "1.3.2",
2021-04-06 15:03:44 +02:00
"main": "./dist/back/index.js",
2022-01-09 19:28:18 +01:00
"engines": {
"node": "14",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
2021-04-06 15:03:44 +02:00
"scripts": {
"start": "electron .",
2022-01-09 18:45:16 +01:00
"watch:front": "parcel watch --target front --no-hmr ./src/front/*/index.html",
"watch:back": "parcel watch --target back --no-hmr ./src/back/index.ts",
2021-04-06 15:03:44 +02:00
"dev": "run-p watch:*",
2021-05-15 16:32:12 +02:00
"build:front": "parcel build --target front ./src/front/*/index.html",
2021-04-06 15:03:44 +02:00
"build:back": "parcel build --target back ./src/back/index.ts",
"build": "run-s build:*",
"pack": "electron-builder -mwl",
2021-05-15 16:48:56 +02:00
"pack:dev": "electron-builder -m dir && open ./out/mac/UnPixel.app",
2021-06-09 12:12:03 +02:00
"dist": "run-s clean build pack",
"clean": "rm -rf .parcel-cache dist out"
2021-04-06 15:03:44 +02:00
},
"browserslist": [
"last 2 Chrome versions"
],
"targets": {
"back": {
"distDir": "./dist/back",
"context": "electron-main"
},
"front": {
"distDir": "./dist/front",
"context": "electron-renderer",
"publicUrl": "../"
}
},
"dependencies": {
"auto-launch": "^5.0.5",
2022-01-21 16:30:18 +01:00
"axios": "^0.25.0",
2022-01-09 18:45:16 +01:00
"dayjs": "^1.10.7",
2022-01-21 16:30:18 +01:00
"electron-log": "^4.4.5",
"electron-store": "^8.0.1",
2021-05-15 16:32:12 +02:00
"ms": "^2.1.3",
2021-04-06 15:03:44 +02:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2021-04-06 17:18:36 +02:00
"semver": "^7.3.5",
2021-04-06 15:03:44 +02:00
"spectre.css": "^0.5.9",
"tachyons": "^4.12.0"
},
"devDependencies": {
2022-01-21 16:30:18 +01:00
"@babel/core": "^7.16.10",
2022-01-09 18:45:16 +01:00
"@types/auto-launch": "^5.0.2",
2021-05-15 16:32:12 +02:00
"@types/ms": "^0.7.31",
2022-01-09 18:45:16 +01:00
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/semver": "^7.3.9",
"electron": "^11.5.0",
"electron-builder": "^22.14.5",
2021-04-06 15:03:44 +02:00
"npm-run-all": "^4.1.5",
2022-01-21 16:30:18 +01:00
"parcel": "^2.2.1",
2022-01-09 18:45:16 +01:00
"postcss": "^8.4.5",
2022-01-21 16:30:18 +01:00
"typescript": "^4.5.5"
2021-04-06 15:03:44 +02:00
}
}