-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "node-mini-app",
"version": "2.5.0",
"description": "Extreamly minimal node js server (express, ts, jest, db, swagger)",
"main": "dist/server.js",
"scripts": {
"prebuild": "eslint --fix",
"build": "tsc && yarn copy-files && webpack",
"copy-files": "cp -avr ./src/api ./dist/api",
"production": "node dist/code_bundle/server.bundle.js",
"start": "ts-node src/server.ts",
"dev": "nodemon --inspect src/server.ts",
"test": "jest"
},
"author": "Noam Aghai",
"license": "ISC",
"resolutions": {
"@types/serve-static": ".13.9"
},
"dependencies": {
"@elastic/elasticsearch": "7.16.0",
"@godaddy/terminus": "^4.9.0",
"dotenv": "8.2.0",
"elastic-apm-node": "^3.33.0",
"etcd3": "^1.1.0",
"express": "4.17.3",
"firebase-admin": "8.9.2",
"inversify": "^5.1.1",
"js-yaml": "4.0.0",
"md5": "2.2.1",
"mongoose": "5.13.20",
"morgan": "^1.10.0",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"socket.io": "2.4.0",
"swagger-tools": "^0.10.4",
"winston": "^3.6.0",
"winston-elasticsearch": "^0.16.1",
"yarn": "^1.22.11"
},
"devDependencies": {
"@types/express": "4.17.11",
"@types/express-serve-static-core": "4.17.0",
"@types/jest": "27.4.0",
"@types/js-yaml": "4.0.0",
"@types/md5": "2.2.0",
"@types/mongoose": "5.7.3",
"@types/morgan": "^1.9.3",
"@types/node": "14.18.11",
"@types/redis": "^2.8.31",
"@types/socket.io": "2.1.10",
"@types/supertest": "^2.0.11",
"@types/swagger-tools": "^0.10.7",
"@types/swagger-ui-express": "4.1.2",
"eslint": "^7.30.0",
"jest": "^27.5.1",
"nodemon": "2.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-loader": "6.0.4",
"ts-node": "8.5.2",
"tslint": "6.1.3",
"typescript": "4.5.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}