-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 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
56
57
58
59
60
61
62
63
{
"name": "nodets-ms-core",
"version": "0.0.19",
"description": "NodeJS Typescript Boilerplate with cloud interaction",
"main": "lib/index.js",
"scripts": {
"build": "rimraf ./lib && tsc",
"copy:assets": "cp .env lib",
"start:dev": "nodemon",
"start:test": "npm run build && node lib/index.js",
"start:exp": "npm run build && npm run copy:assets && node lib/example.js",
"test": "jest --silent",
"test:coverage": "jest --coverage",
"lint": "tslint 'src/**/*.ts?(x)'"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"nodejs",
"typescript",
"cloud"
],
"author": "Gaussian Solutions",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.185",
"@types/node": "^18.7.18",
"@types/request": "2.48.8",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"babel-jest": "^29.2.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.3",
"@types/amqplib": "0.10.0"
},
"dependencies": {
"@azure/service-bus": "^7.7.0",
"@azure/storage-blob": "^12.11.0",
"applicationinsights": "^2.3.4",
"dotenv": "^16.0.3",
"reflect-metadata": "^0.1.13",
"axios": "1.2.1",
"amqplib": "0.10.3",
"jest-html-reporter": "3.7.1"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/index.d.ts"
],
"types": "lib/index.d.ts"
}