-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"version": "0.1.0",
"license": "MIT",
"types": "./build/src/index.d.ts",
"description": "Helpers library for application",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && tsc --outDir build/src && node scripts/build-package.js",
"build:cjs": "NODE_ENV=production BABEL_ENV=cjs babel src --presets=./scripts/babel-preset.js --extensions .ts,.tsx --ignore src/**/*.specs.tsx --out-dir build/cjs --source-maps",
"build:esm": "NODE_ENV=production BABEL_ENV=esm babel src --presets=./scripts/babel-preset.js --extensions .ts,.tsx --ignore src/**/*.specs.tsx --out-dir build/esm --source-maps"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [],
"name": "@peter-lazarov/nodejs-reacjs-microservices-helper-library",
"author": "Uzochukwueddie, Peter Lazarov",
"repository": {
"type": "git",
"url": "git+https://github.com/Peter-Lazarov/Nodejs-Reacjs-Microservices-Helper-Library.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"build"
],
"exports": {
".": {
"import": "./build/src/index.js",
"require": "./build/src/index.js"
}
},
"dependencies": {
"@elastic/elasticsearch": "^8.13.0",
"cloudinary": "^2.5.0",
"express": "^4.21.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.4",
"typescript": "^5.4.3",
"winston": "^3.14.2",
"winston-elasticsearch": "^0.18.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"typescript": "^5.6.2"
}
}