hadean-old/package.json

70 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2021-06-14 22:03:55 -04:00
{
2021-07-23 00:12:02 -04:00
"name": "hadean",
2021-06-14 22:03:55 -04:00
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"dependencies": {
2021-07-25 13:57:47 -04:00
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@nodegui/nodegui": "^0.34.0",
"@rollup/plugin-alias": "^3.1.4",
"@rollup/plugin-babel": "^5.3.0",
2021-07-26 00:18:21 -04:00
"@rollup/plugin-json": "^4.1.0",
2021-06-14 22:03:55 -04:00
"@types/blessed": "^0.1.17",
2021-06-15 20:05:07 -04:00
"@types/bonjour": "^3.5.8",
2021-06-22 19:25:41 -04:00
"@types/chai": "^4.2.19",
2021-07-26 00:18:21 -04:00
"@types/chokidar": "^2.1.3",
2021-06-15 21:53:00 -04:00
"@types/faker": "^5.5.6",
2021-06-26 13:07:11 -04:00
"@types/fs-extra": "^9.0.11",
2021-06-22 19:25:41 -04:00
"@types/mocha": "^8.2.2",
2021-07-23 00:12:02 -04:00
"@types/node-ipc": "^9.1.5",
2021-06-15 20:05:07 -04:00
"@types/uuid": "^8.3.0",
2021-07-21 01:58:00 -04:00
"@types/watch": "^1.0.2",
2021-06-26 13:07:11 -04:00
"@types/ws": "^7.4.5",
2021-07-16 20:49:29 -04:00
"@web/dev-server": "^0.1.18",
2021-06-15 20:05:07 -04:00
"bonjour": "^3.5.0",
2021-06-22 19:25:41 -04:00
"chai": "^4.3.4",
2021-06-14 22:03:55 -04:00
"chalk": "^4.1.1",
2021-07-20 16:37:38 -04:00
"chokidar": "^3.5.2",
"deepmerge": "^4.2.2",
2021-06-14 22:03:55 -04:00
"faker": "^5.5.3",
2021-06-23 01:28:06 -04:00
"frigid": "^1.3.13",
2021-06-18 02:02:50 -04:00
"fs-extra": "^10.0.0",
2021-06-15 21:53:00 -04:00
"get-port": "^5.1.1",
2021-06-22 19:25:41 -04:00
"mocha": "^9.0.1",
"module-alias": "^2.2.2",
2021-07-25 13:57:47 -04:00
"multiview": "^3.0.1",
2021-06-14 22:03:55 -04:00
"neo-blessed": "^0.2.0",
2021-06-26 03:11:18 -04:00
"node-dev": "^7.0.0",
2021-07-23 00:12:02 -04:00
"node-ipc": "^10.0.2",
2021-06-26 03:11:18 -04:00
"nodemon": "^2.0.7",
2021-06-14 22:03:55 -04:00
"printable-characters": "^1.0.42",
2021-07-25 13:57:47 -04:00
"rollup": "^2.53.3",
2021-06-14 22:03:55 -04:00
"sisteransi": "^1.0.5",
2021-06-26 03:11:18 -04:00
"supervisor": "^0.12.0",
2021-06-15 19:15:49 -04:00
"typescript": "^4.3.2",
2021-06-15 20:05:07 -04:00
"uuid": "^8.3.2",
"walk-sync": "^3.0.0",
2021-07-21 01:58:00 -04:00
"watch": "^1.0.2",
2021-06-15 23:53:51 -04:00
"ws": "^7.4.6",
2021-06-15 19:15:49 -04:00
"yarn": "^1.22.10"
2021-06-14 22:03:55 -04:00
},
"scripts": {
2021-07-25 13:57:47 -04:00
"compile": "yarn tsc & yarn rollup",
2021-07-26 00:18:21 -04:00
"start": "yarn qode bin/app.bundle.cjs",
"dev": "yarn x bin/ipc-tower.bundle.cjs",
2021-06-22 19:25:41 -04:00
"prod": "git fetch && git pull && yarn && tsc && yarn start",
"test": "mocha",
"lint": "eslint src/**/*.ts",
2021-07-16 20:49:29 -04:00
"web": "web-dev-server --open index.html --node-resolve --watch",
2021-07-26 00:18:21 -04:00
"profile": "yarn qode --inspect-brk bin/app.bundle.cjs",
2021-07-25 13:57:47 -04:00
"qode": "qode",
"x": "node",
"tsc": "tsc",
"tsc:watch": "yarn tsc --watch",
"rollup": "rollup --config rollup.config.js",
"rollup:watch": "yarn rollup --watch"
2021-06-14 22:03:55 -04:00
}
}