2019-05-02 18:57:56 +02:00
|
|
|
{
|
|
|
|
"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": {
|
2019-05-14 01:18:31 +02:00
|
|
|
"start": "concurrently \"npm run watch-js\" \"npm run watch-php\"",
|
2019-05-25 02:50:31 +02:00
|
|
|
"watch-js": "parcel watch index.html view.html --public-url ./",
|
2019-05-28 07:51:28 +02:00
|
|
|
"watch-php": "cpx \"src/php/**/{*,.*}\" dist -v -w",
|
|
|
|
"bundle": "parcel build index.html && cpx \"src/php/**/{*,.*}\" dist",
|
2019-05-13 23:02:36 +02:00
|
|
|
"serve-frontend-only": "parcel index.html",
|
2019-05-08 20:08:44 +02:00
|
|
|
"clear": "npm run clear-dist && npm run clear-cache",
|
|
|
|
"clear-dist": "rimraf dist/*",
|
|
|
|
"clear-cache": "rimraf .cache/*"
|
2019-05-02 18:57:56 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-05-07 23:55:55 +02:00
|
|
|
"autoprefixer": "^9.5.1",
|
2019-05-14 01:18:31 +02:00
|
|
|
"concurrently": "^4.1.0",
|
|
|
|
"cpx": "^1.5.0",
|
2019-05-02 18:57:56 +02:00
|
|
|
"parcel-bundler": "^1.12.3",
|
2019-05-08 20:08:44 +02:00
|
|
|
"rimraf": "^2.6.3",
|
2019-05-02 18:57:56 +02:00
|
|
|
"sass": "^1.19.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-05-09 00:22:59 +02:00
|
|
|
"marked": "^0.6.2",
|
2019-05-10 23:39:00 +02:00
|
|
|
"normalize.css": "^8.0.1",
|
|
|
|
"papaparse": "^4.6.3"
|
2019-05-02 18:57:56 +02:00
|
|
|
}
|
|
|
|
}
|