project-server-api/package.json

26 lines
719 B
JSON
Raw Normal View History

2021-05-30 23:16:10 -04:00
{
"name": "project-server-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/nedb": "^1.8.11",
"cors": "^2.8.5",
2021-06-02 16:56:49 -04:00
"cross-env": "^7.0.3",
2021-05-30 23:16:10 -04:00
"express": "^4.17.1",
"multiview": "^3.0.1",
"nedb": "^1.8.0",
"supervisor": "^0.12.0",
"typescript": "^4.3.2",
"yarn": "^1.22.10"
},
"type": "module",
"scripts": {
"start": "node out/index.js",
2021-06-02 16:56:49 -04:00
"serve:watch": "supervisor -k -t -n exit -w out --exec node -- out/index.js",
2021-05-30 23:16:10 -04:00
"compile": "tsc",
"compile:watch": "tsc --watch --preserveWatchOutput",
2021-06-02 16:56:49 -04:00
"dev": "cross-env DEBUG_COLORS=true DEBUG_TIMESTAMP=false DEBUG=* multiview [ yarn compile:watch ] [ yarn serve:watch ]"
2021-05-30 23:16:10 -04:00
}
}