hadean-old/package.json

42 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2021-06-14 22:03:55 -04:00
{
"name": "df-idle",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"dependencies": {
"@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-06-15 21:53:00 -04:00
"@types/faker": "^5.5.6",
2021-06-22 19:25:41 -04:00
"@types/mocha": "^8.2.2",
2021-06-15 20:05:07 -04:00
"@types/uuid": "^8.3.0",
"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",
"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-06-14 22:03:55 -04:00
"neo-blessed": "^0.2.0",
"printable-characters": "^1.0.42",
"sisteransi": "^1.0.5",
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-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": {
"compile:watch": "tsc --watch",
2021-06-22 19:25:41 -04:00
"start": "node --no-warnings --loader ./lib/aliases.mjs --enable-source-maps out/src/index.js",
2021-06-15 19:15:49 -04:00
"dev": "supervisor -w out -n exit -t -k --exec yarn -- start",
2021-06-22 19:25:41 -04:00
"prod": "git fetch && git pull && yarn && tsc && yarn start",
"test": "mocha",
"lint": "eslint src/**/*.ts"
2021-06-14 22:03:55 -04:00
}
}