ora/package.json

47 lines
1.4 KiB
JSON
Raw 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": {
"name": "Nicco",
"email": "hi@nicco.io",
"url": "https://nicco.io"
},
"homepage": "https://github.com/cupcakearmy/ora",
2020-09-18 21:00:59 +02:00
"scripts": {
2020-10-11 23:46:06 +02:00
"clean": "rm -rf dist .cache web-ext-artifacts node_modules",
2020-09-19 01:16:43 +02:00
"dev": "parcel watch --no-hmr manifest.json src/dashboard/index.html",
2020-10-08 21:25:28 +02:00
"build": "parcel build --no-content-hash --no-source-maps --no-minify manifest.json src/dashboard/index.html",
2020-10-12 00:33:11 +02:00
"dist": "rm -rf dist && yarn run build && yarn pack:ff && yarn pack:crx",
2020-10-12 10:22:01 +02:00
"pack:crx": "crx3 pack ./dist -p ./crx.pem -o ora.crx",
2020-10-12 00:33:11 +02:00
"pack:ff": "web-ext build -s dist --overwrite-dest"
2020-09-18 21:00:59 +02:00
},
2020-09-17 14:27:08 +02:00
"browserslist": [
"last 2 chrome versions",
"last 2 firefox versions"
],
"dependencies": {
2020-09-20 17:28:09 +02:00
"d3": "^6.1.1",
2020-09-18 21:00:59 +02:00
"dayjs": "^1.8.36",
"dexie": "^3.0.2",
2020-09-18 21:00:59 +02:00
"faker": "^5.1.0",
2020-10-11 23:46:06 +02:00
"file-saver": "^2.0.2",
"joi": "^17.2.1",
2020-09-18 21:00:59 +02:00
"lodash": "^4.17.20",
"spectre.css": "^0.5.9",
2020-09-20 17:28:09 +02:00
"svelte-spa-router": "^2.2.0",
2020-09-18 21:00:59 +02:00
"tailwindcss": "^1.8.10",
2020-09-17 14:27:08 +02:00
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@types/firefox-webext-browser": "^78.0.1",
2020-09-18 21:00:59 +02:00
"@types/lodash": "^4.14.161",
2020-10-12 01:39:39 +02:00
"crx3": "^1.1.2",
2020-09-17 14:27:08 +02:00
"parcel-bundler": "^1.12.4",
2020-09-18 21:00:59 +02:00
"parcel-plugin-svelte": "^4.0.6",
2020-09-17 14:27:08 +02:00
"parcel-plugin-web-extension": "^1.6.1",
2020-09-18 21:00:59 +02:00
"svelte": "^3.25.1",
2020-10-08 21:25:28 +02:00
"web-ext": "^5.2.0"
2020-09-17 14:27:08 +02:00
}
}