ionian/package.json

69 lines
1.5 KiB
JSON

{
"name": "followed",
"version": "1.0.0",
"description": "",
"main": "build/app.js",
"scripts": {
"compile": "tsc",
"compile:watch": "tsc -w",
"app": "electron build/app.js",
"app:build:win64": "electron-builder --win --x64",
"app:pack:win64": "electron-builder --win --x64 --dir"
},
"build": {
"asar": true,
"files": [
"build/**/*",
"node_modules/**/*",
"package.json"
],
"extraFiles":[
{
"from":"dist/",
"to":"dist/",
"filter":["**/*","!**/*.map"]
},
"index.html"
],
"appId": "com.prelude.ionian.app",
"productName": "Ionian",
"win": {
"target": [
"zip"
]
},
"directories": {
"output": "app/",
"app": "."
}
},
"author": "",
"license": "ISC",
"dependencies": {
"chokidar": "^3.5.1",
"jsonschema": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.16",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"natural-orderby": "^2.0.3",
"node-stream-zip": "^1.12.0",
"sqlite3": "^5.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/knex": "^0.16.1",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/node": "^14.14.22",
"electron": "^11.2.0",
"electron-builder": "^22.9.1",
"eslint-plugin-node": "^11.1.0",
"ts-json-schema-generator": "^0.82.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}