ora/package.json

55 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-09-17 14:27:08 +02:00
{
2020-09-17 14:29:38 +02:00
"name": "ora",
2020-10-08 21:25:28 +02:00
"license": "MIT",
2020-09-17 14:29:38 +02:00
"private": true,
2020-10-11 15:12:47 +02:00
"author": {
2021-11-22 01:35:45 +01:00
"name": "Niccolo Borgioli",
2020-10-11 15:12:47 +02:00
"email": "hi@nicco.io",
"url": "https://nicco.io"
},
"homepage": "https://github.com/cupcakearmy/ora",
2020-09-18 21:00:59 +02:00
"scripts": {
2021-11-22 01:35:45 +01:00
"clean": "rm -rf dist .parcel-cache web-ext-artifacts ora.zip",
"dev": "parcel watch --target dev --no-hmr ./manifest.json",
"build": "parcel build --target prod ./manifest.json",
2022-04-19 14:45:06 +02:00
"pack": "web-ext build -s dist/prod --overwrite-dest",
"dist": "run-s clean build pack"
2021-11-22 01:35:45 +01:00
},
"targets": {
"dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"prod": {}
2020-09-18 21:00:59 +02:00
},
2020-09-17 14:27:08 +02:00
"dependencies": {
2022-04-19 14:45:06 +02:00
"d3": "^7.4.4",
"dayjs": "^1.11.1",
"dexie": "^3.2.1",
2021-11-23 01:45:19 +01:00
"dexie-export-import": "^1.0.3",
2021-11-22 01:35:45 +01:00
"faker": "5.5.2",
"file-saver": "^2.0.5",
2022-04-19 14:45:06 +02:00
"joi": "^17.6.0",
2021-11-22 01:35:45 +01:00
"lodash": "^4.17.21",
2021-11-22 20:07:06 +01:00
"pretty-bytes": "^5.6.0",
2020-09-18 21:00:59 +02:00
"spectre.css": "^0.5.9",
2021-11-22 01:35:45 +01:00
"svelte-spa-router": "^3.2.0",
2022-04-19 14:45:06 +02:00
"tailwindcss": "^2.2.19",
"webextension-polyfill": "^0.9.0"
2020-09-17 14:27:08 +02:00
},
"devDependencies": {
2022-04-19 14:45:06 +02:00
"@parcel/config-webextension": "^2.4.1",
"@parcel/core": "^2.4.1",
"@types/lodash": "^4.14.182",
"buffer": "^6.0.3",
2021-11-22 01:35:45 +01:00
"npm-run-all": "^4.1.5",
2022-04-19 14:45:06 +02:00
"parcel": "^2.4.1",
2021-11-22 01:35:45 +01:00
"parcel-transformer-svelte": "^1.2.3",
2022-04-19 14:45:06 +02:00
"process": "^0.11.10",
"svelte": "^3.47.0",
"web-ext": "^6.8.0"
2020-09-17 14:27:08 +02:00
}
}