1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-03-21 02:48:54 +01:00
Lexiconga/package.json

33 lines
1 KiB
JSON
Raw Normal View History

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