-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 925 Bytes
/
package.json
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
32
{
"dependencies": {
"appbox-formulas": "^0.0.52",
"lodash": "^4.17.21",
"mongoose": "^5.12.13",
"node-cron": "^3.0.0",
"nunjucks": "^3.2.3",
"ts-node": "^10.0.0",
"tsc": "^2.0.3",
"typescript": "^4.3.5",
"uniqid": "^5.3.0"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.5",
"appbox-types": "^0.0.7",
"nodemon": "^2.0.9"
},
"name": "appbox-engine",
"version": "0.0.1",
"description": "Engine for AppBox",
"main": "engine.ts",
"author": "Vic van Cooten",
"license": "MIT",
"scripts": {
"startLocal": "set \"dbUrl=localhost:27017\" && yarn start",
"build": "tsc",
"develop": "nodemon src/engine.ts",
"start": "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"
}
}