-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.62 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.62 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
{
"name": "@impler/services",
"version": "1.8.1",
"description": "Reusable services to shared between backend api and queue-manager",
"license": "MIT",
"author": "implerhq",
"repository": "https://github.com/implerhq/impler.io",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": ["impler", "implerhq", "data-import", "excel-import", "csv-import"],
"files": ["dist", "package.json"],
"scripts": {
"start": "npm run start:dev",
"prebuild": "rimraf dist",
"build": "cross-env node_modules/.bin/tsc -p tsconfig.build.json",
"build:watch": "cross-env node_modules/.bin/tsc -p tsconfig.build.json -w --preserveWatchOutput",
"start:dev": "pnpm build:watch",
"precommit": "lint-staged",
"lint": "eslint src",
"lint:fix": "pnpm lint -- --fix"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/sax": "^1.2.7",
"@types/uuid": "^9.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.185.0",
"@aws-sdk/client-ses": "^3.616.0",
"@aws-sdk/lib-storage": "^3.360.0",
"@aws-sdk/s3-request-presigner": "^3.276.0",
"@azure/storage-blob": "^12.27.0",
"@impler/shared": "workspace:^",
"axios": "1.8.2",
"nodemailer": "^7.0.7",
"sax": "^1.4.1",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["prettier --ignore-path .eslintignore --write"],
"{*.json,.{babelrc,eslintrc,prettierrc,stylelintrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{html,md,yml}": ["prettier --ignore-path .eslintignore --single-quote --write"]
}
}