ora/package.json

35 lines
936 B
JSON
Raw Normal View History

2020-09-17 14:27:08 +02:00
{
2020-09-17 14:29:38 +02:00
"name": "ora",
"private": true,
2020-09-18 21:00:59 +02:00
"scripts": {
2020-09-19 01:16:43 +02:00
"dev": "parcel watch --no-hmr manifest.json src/dashboard/index.html",
2020-09-20 17:28:09 +02:00
"build": "parcel build --no-content-hash --no-source-maps manifest.json src/dashboard/index.html",
2020-09-18 21:00:59 +02:00
"launch": "web-ext run -s dist"
},
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",
"faker": "^5.1.0",
"lodash": "^4.17.20",
2020-09-17 14:27:08 +02:00
"nedb": "^1.8.0",
"nedb-promises": "^4.0.4",
2020-09-18 21:00:59 +02:00
"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-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-09-17 14:27:08 +02:00
"web-ext": "^5.0.0"
}
}