-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.42 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
54
55
{
"name": "httpserver-nodejs",
"description": "HTTP server of micro-service.",
"license": "MIT",
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": ""
},
"main": "index.js",
"scripts": {
"build": "tsc",
"build-web": "tsc && copyfiles -u 1 ./src/**/*.html ./src/**/*.js ./src/**/*.css ./dist",
"start": "node dist/",
"test": "tsc && mocha dist/**/*.spec.js"
},
"version": "0.1.0",
"dependencies": {
"typescript": "4.6.2",
"tsyringe": "4.7.0",
"reflect-metadata": "^0.1.13",
"@types/node": "^12.12.6",
"@types/mocha": "^5.2.5",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/cookie-parser": "^1.4.3",
"@types/restify-errors": "~4.3.4",
"@types/cors": "~2.8.4",
"@types/mongodb": "~3.1.17",
"@types/lodash": "~4.14.180",
"@types/uuid": "~8.3.4",
"express": "~4.17.3",
"express-session": "^1.17.3",
"cookie-parser": "^1.4.6",
"restify-errors": "~6.1.1",
"cors": "~2.8.5",
"helmet": "^4.6.0",
"nocache": "^3.0.1",
"axios": "~0.21.0",
"redis": "~4.0.6",
"mongodb": "~3.1.13",
"rxjs": "^6.6.7",
"dotenv": "^6.2.0",
"pino": "^5.17.0",
"pino-pretty": "^3.2.0",
"lodash": "~4.17.11",
"uuid": "~8.3.2",
"moment-timezone": "~0.5.23"
},
"devDependencies": {
"chai": "~4.1.2",
"eslint": "~4.19.1",
"copyfiles": "^1.0.3"
}
}