-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.59 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
{
"name": "time_series_storage_microservice",
"version": "1.5.1",
"description": "A simple application which allows the storage and query of tiem series datasets in an InfluxDB 2.0 instance via a RESTful API.",
"main": "index.js",
"scripts": {
"dev": "nodemon index.ts",
"build": "tsc --outdir ./build -p . ",
"start": "node ./build/index.js",
"test": "mocha -r ts-node/register test/*.test.ts --timeout 10000 --exit",
"coverage": "nyc mocha -r ts-node/register test/*.test.ts --timeout 15000 --exit",
"swagger-autogen": "ts-node swagger.ts"
},
"keywords": [],
"author": "Maxime MOREILLON",
"license": "MIT",
"dependencies": {
"@influxdata/influxdb-client": "^1.24.0",
"@influxdata/influxdb-client-apis": "^1.24.0",
"@moreillon/express_group_based_authorization_middleware": "^2.3.1",
"@moreillon/express_identification_middleware": "^1.3.5",
"@moreillon/express-oidc": "^2.1.1",
"cors": "^2.8.5",
"csv-string": "^4.1.0",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"express-prom-bundle": "^6.6.0",
"http-errors": "^2.0.0",
"prom-client": "^15.0.0",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/mocha": "^10.0.1",
"@types/swagger-ui-express": "^4.1.6",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"supertest": "^6.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}