-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 877 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"dependencies": {
"connect": "^3.7.0",
"express": "^4.17.3",
"mongoose": "^5.13.15",
"uniqid": "^5.2.0",
"vhost": "^3.0.2"
},
"devDependencies": {
"@types/node": "^16.11.9",
"appbox-types": "^0.0.7",
"concurrently": "^5.3.0",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"name": "@frontbase/apps-erver",
"version": "0.0.1",
"description": "App Server for Frontbase",
"main": "server.ts",
"author": "Vic van Cooten",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/server.js",
"develop": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"yarn run watch-ts\" \"yarn run watch-node\"",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
}
}