-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.36 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
{
"name": "NodeJS-Elasticsearch",
"version": "1.0.0",
"description": "NodeJS Elasticsearch",
"main": "index.ts",
"scripts": {
"test": "mocha --recursive --require ts-node/register spec src/**/*.spec.ts",
"watch": "tsc --watch",
"build": "tsc",
"start": "tsc && node dist/server.js",
"dev:tsc": "tsc --w",
"dev:node": "nodemon dist/server.js",
"dev": "concurrently npm:dev:*"
},
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^7.6.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.16.1",
"@types/express-fileupload": "^1.1.0",
"@types/i18n": "^0.8.5",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^11.13.6",
"@types/underscore": "^1.9.3",
"@types/uuid": "^3.4.4",
"@types/validator": "^10.11.2",
"@types/winston": "^2.4.4",
"concurrently": "^4.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"elasticsearch": "^16.7.1",
"express": "^4.16.4",
"express-fileupload": "^1.1.5",
"handlebars": "^4.4.2",
"http-status-codes": "^1.3.2",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"ts-node": "^8.1.0",
"typescript": "^3.5.3",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"validator": "^11.1.0",
"winston": "^2.4.4"
},
"devDependencies": {
"express-swagger-generator": "^1.1.14"
}
}