-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mobindi-backend",
"license": "GPL-3.0",
"version": "1.1.0",
"private": false,
"scripts": {
"start": "node dist/app.js",
"test": "mocha 'dist/**/*.test.js'",
"tsc": "tsc",
"build": "tsc"
},
"main": "dist/app.js",
"dependencies": {
"body-parser": "^1.18.3",
"cancellationtoken": "^2.0.1",
"cgi": "https://github.com/pludov/node-cgi/tarball/master",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "^4.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"express-ws": "^4.0.0",
"immutability-helper": "^2.8.1",
"json-canonicalize": "^1.0.4",
"json-patch": "^0.7.0",
"jsonpath": "^1.0.1",
"memory-streams": "^0.1.3",
"ml-regression-polynomial": "^1.0.3",
"morgan": "^1.9.1",
"nedb": "^1.8.0",
"node-uuid": "^1.4.8",
"quaternion": "^1.1.0",
"sax": "^1.2.4",
"serve-favicon": "^2.5.0",
"session-file-store": "^1.0.0",
"sha1": "^1.1.1",
"source-map-support": "^0.5.9",
"tmp": "0.0.33",
"trace-error": "0.0.7",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"ws": "^6.1.0",
"xmlbuilder": "^9.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/json-patch": "0.0.30",
"@types/jsonpath": "^0.2.0",
"@types/mocha": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/nedb": "^1.8.6",
"@types/node-uuid": "0.0.28",
"@types/sax": "^1.0.1",
"@types/session-file-store": "^1.2.0",
"@types/sha1": "^1.1.1",
"@types/tmp": "0.0.34",
"@types/ws": "^6.0.1",
"@types/xmlbuilder": "0.0.34",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslib": "^2.2.0",
"typescript": "^3.9.7"
}
}