ionian/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2020-12-31 03:06:16 +09:00
{
"name": "followed",
"version": "1.0.0",
"description": "",
2021-01-10 03:04:30 +09:00
"main": "build/app.js",
2020-12-31 03:06:16 +09:00
"scripts": {
2021-01-10 03:04:30 +09:00
"compile": "tsc",
"compile:watch": "tsc -w",
"app": "electron build/app.js",
"app:build:win64": "electron-builder --win --x64"
},
"build": {
2021-02-01 22:21:42 +09:00
"asar": true,
2021-01-11 23:37:29 +09:00
"files": [
2021-01-10 03:04:30 +09:00
"build/**/*",
"node_modules/**/*",
2021-01-17 03:24:55 +09:00
"package.json"
2021-01-10 03:04:30 +09:00
],
"appId": "com.prelude.ionian.app",
"productName": "Ionian",
"win": {
"target": [
"zip"
]
},
"directories": {
"output": "app/",
"app": "."
}
2020-12-31 03:06:16 +09:00
},
"author": "",
"license": "ISC",
"dependencies": {
2021-01-22 15:13:05 +09:00
"chokidar": "^3.5.1",
"jsonschema": "^1.4.0",
2021-01-09 23:23:37 +09:00
"jsonwebtoken": "^8.5.1",
2021-01-22 15:13:05 +09:00
"knex": "^0.21.16",
"koa": "^2.13.1",
2020-12-31 03:06:16 +09:00
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"natural-orderby": "^2.0.3",
"node-stream-zip": "^1.12.0",
2021-01-22 15:13:05 +09:00
"sqlite3": "^5.0.1"
2020-12-31 03:06:16 +09:00
},
"devDependencies": {
2021-01-09 23:23:37 +09:00
"@types/jsonwebtoken": "^8.5.0",
2020-12-31 03:06:16 +09:00
"@types/knex": "^0.16.1",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
2021-01-22 15:13:05 +09:00
"@types/node": "^14.14.22",
"electron": "^11.2.0",
2021-01-10 03:04:30 +09:00
"electron-builder": "^22.9.1",
2021-01-11 23:37:29 +09:00
"eslint-plugin-node": "^11.1.0",
2021-01-15 18:43:36 +09:00
"ts-json-schema-generator": "^0.82.0",
2021-01-17 03:24:55 +09:00
"typescript": "^4.1.3"
2020-12-31 03:06:16 +09:00
}
}