ionian/package.json

92 lines
2.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": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"build:watch": "webpack --mode development -w",
"start": "ts-node src/server.ts",
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": {
"asar": false,
2021-01-11 23:37:29 +09:00
"files": [
2021-01-10 03:04:30 +09:00
"build/**/*",
"node_modules/**/*",
"package.json"
],
"appId": "com.prelude.ionian.app",
"productName": "Ionian",
"win": {
"target": [
"zip"
]
},
"directories": {
"output": "app/",
"app": "."
}
2020-12-31 03:06:16 +09:00
},
2021-01-09 23:23:37 +09:00
"browserslist": {
"production": [
2021-01-05 04:02:43 +09:00
"> 10%"
],
2021-01-09 23:23:37 +09:00
"development": [
2021-01-05 04:02:43 +09:00
"last 1 chrome version",
"last 1 firefox version"
]
},
2020-12-31 03:06:16 +09:00
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
2021-01-09 23:23:37 +09:00
"jsonwebtoken": "^8.5.1",
2020-12-31 03:06:16 +09:00
"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",
2021-01-05 04:02:43 +09:00
"react-router-dom": "^5.2.0",
2021-01-10 03:04:30 +09:00
"sqlite3": "^5.0.0"
2020-12-31 03:06:16 +09:00
},
"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",
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",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
2021-01-05 04:02:43 +09:00
"@types/react-router-dom": "^5.1.7",
2020-12-31 03:06:16 +09:00
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
2021-01-10 03:04:30 +09:00
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
2021-01-11 23:37:29 +09:00
"eslint-plugin-node": "^11.1.0",
2020-12-31 03:06:16 +09:00
"mini-css-extract-plugin": "^1.3.3",
"style-loader": "^2.0.0",
2021-01-10 03:04:30 +09:00
"ts-node": "^9.1.1",
2020-12-31 03:06:16 +09:00
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}