-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "file-flex",
"version": "1.0.1",
"description": "Universal File Handler",
"main": "dist/index.js",
"repository": "git@github.com:DaviMAC02/file-flex.git",
"author": "Davi Martini Agrello Cintra <davi.cintra2002@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap --legacy-output --minify --clean",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"test": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"dotenv": "^16.4.5",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"@google-cloud/storage": "^7.9.0",
"aws-sdk": "^2.1584.0"
}
}