-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "data-observability",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc && npm run lint",
"start": "npm run build &&export NODE_ENV=production&& nodemon ./src/index.ts",
"dev": "npm run build &&export NODE_ENV=development&& nodemon ./src/index.ts",
"deploy": "npm run build && serverless deploy",
"write-env": "./write-env \"observability-service-production-app\"",
"debug": "npm run build&&export NODE_ENV=development&& nodemon --inspect=3013 ./src/index.ts",
"debug-prod": "npm run build&&export NODE_ENV=production&& nodemon --inspect=3013 ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cito-data/data-observability.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/cito-data/data-observability/issues"
},
"homepage": "https://github.com/cito-data/data-observability#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/generic-pool": "^3.8.1",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongo-sanitize": "^1.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.16.1",
"@types/snowflake-sdk": "^1.6.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.0.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"serverless": "^3.22.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.245.0",
"@aws-sdk/client-scheduler": "^3.264.0",
"@vendia/serverless-express": "^4.10.1",
"awilix": "^6.1.0",
"axios": "^0.26.0",
"canvas": "^2.11.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"echarts": "^5.4.1",
"express": "^4.17.3",
"generic-pool": "^3.9.0",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"mongo-sanitize": "^1.1.0",
"mongodb": "^4.15.0",
"morgan": "^1.10.0",
"snowflake-sdk": "^1.6.18",
"uuid": "^9.0.0"
}
}