mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-03-16 08:28:55 +01:00
Newer versions incorrectly link html files: https://github.com/parcel-bundler/parcel/issues/2791
33 lines
1 KiB
JSON
33 lines
1 KiB
JSON
{
|
|
"name": "lexiconga-lite",
|
|
"version": "1.0.0",
|
|
"description": "A light-as-possible rewrite of Lexiconga",
|
|
"main": "index.html",
|
|
"repository": "https://cybre.tech/Alamantus/lexiconga-lite.git",
|
|
"author": "Robbie Antenesse <dev@alamantus.com>",
|
|
"license": "UNLICENCED",
|
|
"scripts": {
|
|
"start": "concurrently \"npm run watch-js\" \"npm run watch-php\"",
|
|
"watch-js": "parcel watch index.html view.html --public-url ./",
|
|
"watch-php": "cpx \"src/php/**/{*,.*}\" dist -v -w",
|
|
"bundle": "parcel build index.html && cpx \"src/php/**/{*,.*}\" dist",
|
|
"serve-frontend-only": "parcel index.html",
|
|
"clear": "npm run clear-dist && npm run clear-cache",
|
|
"clear-dist": "rimraf dist/*",
|
|
"clear-cache": "rimraf .cache/*"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^9.5.1",
|
|
"concurrently": "^4.1.0",
|
|
"cpx": "^1.5.0",
|
|
"node-sass": "^4.12.0",
|
|
"parcel-bundler": "1.9.7",
|
|
"rimraf": "^2.6.3",
|
|
"sass": "^1.19.0"
|
|
},
|
|
"dependencies": {
|
|
"marked": "^0.6.2",
|
|
"normalize.css": "^8.0.1",
|
|
"papaparse": "^4.6.3"
|
|
}
|
|
}
|