92 lines
2.3 KiB
JSON
92 lines
2.3 KiB
JSON
{
|
|
"name": "followed",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "build/app.js",
|
|
"scripts": {
|
|
"build:dev": "webpack --mode development",
|
|
"build:prod": "webpack --mode production",
|
|
"build:watch": "webpack --mode development -w",
|
|
"start": "ts-node src/server.ts",
|
|
"compile": "tsc",
|
|
"compile:watch": "tsc -w",
|
|
"app": "electron build/app.js",
|
|
"app:build:win64": "electron-builder --win --x64"
|
|
},
|
|
"build": {
|
|
"asar": false,
|
|
"files": [
|
|
"build/**/*",
|
|
"node_modules/**/*",
|
|
"package.json"
|
|
],
|
|
"appId": "com.prelude.ionian.app",
|
|
"productName": "Ionian",
|
|
"win": {
|
|
"target": [
|
|
"zip"
|
|
]
|
|
},
|
|
"directories": {
|
|
"output": "app/",
|
|
"app": "."
|
|
}
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
"> 10%"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version"
|
|
]
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@material-ui/core": "^4.11.2",
|
|
"@material-ui/icons": "^4.11.2",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"knex": "^0.21.14",
|
|
"koa": "^2.13.0",
|
|
"koa-bodyparser": "^4.3.0",
|
|
"koa-router": "^10.0.0",
|
|
"natural-orderby": "^2.0.3",
|
|
"node-stream-zip": "^1.12.0",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"react-router-dom": "^5.2.0",
|
|
"sqlite3": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.10",
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
|
"@babel/preset-env": "^7.12.11",
|
|
"@babel/preset-react": "^7.12.10",
|
|
"@babel/preset-typescript": "^7.12.7",
|
|
"@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.16",
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@types/react-router-dom": "^5.1.7",
|
|
"babel-core": "^6.26.3",
|
|
"babel-loader": "^8.2.2",
|
|
"css-loader": "^5.0.1",
|
|
"electron": "^11.1.1",
|
|
"electron-builder": "^22.9.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"mini-css-extract-plugin": "^1.3.3",
|
|
"style-loader": "^2.0.0",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.1.3",
|
|
"webpack": "^5.11.0",
|
|
"webpack-cli": "^4.2.0",
|
|
"webpack-dev-server": "^3.11.0"
|
|
}
|
|
}
|