This repository was archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"dependencies": {
"appbox-formulas": "^0.0.52",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.1.9",
"express-formidable": "^1.2.0",
"fuzzysort": "^1.1.4",
"global": "^4.4.0",
"html-pdf": "^3.0.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.0",
"node-2fa": "^2.0.2",
"node-http-ping": "^0.3.1",
"nodemon": "^2.0.9",
"nunjucks": "^3.2.3",
"shelljs": "^0.8.4",
"socket.io": "^4.0.1",
"ts-node": "^9.0.0",
"tsc": "^2.0.3",
"typescript": "^4.3.5",
"uniqid": "^5.3.0",
"validator": "^13.6.0",
"web-push": "^3.4.5",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.35",
"@types/express": "^4.17.12",
"@types/lodash": "^4.14.170",
"@types/socket.io": "^3.0.2",
"appbox-types": "^0.0.7",
"concurrently": "^6.2.0"
},
"name": "appbox-server",
"version": "0.0.1",
"description": "Server for AppBox",
"main": "server.ts",
"author": "Vic van Cooten",
"license": "MIT",
"scripts": {
"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"
}
}