-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.03 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@baadal-sdk/dapi",
"version": "0.31.6",
"description": "Dead-simple API wrappers",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./cjs": "./dist/cjs/index.js"
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"author": "Abhishek Raj <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14.10.0"
},
"scripts": {
"build": "npm run verify && bash tasks/build.sh",
"clean": "shx rm -rf dist",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"prepub": "run-s --silent clean build",
"pub": "npm run prepub && npm publish",
"pub:test": "npm run prepub && npm publish --dry-run",
"test": "ts-node test/index.ts",
"verify": "jsonlint -q tsconfig.json",
"blame": "git log -S",
"hist": "git log --oneline | grep -i",
"follow": "git log --follow --oneline",
"ncu": "ncu",
"ncuu": "ncu -u && npm i"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.264.0",
"@aws-sdk/client-s3": "^3.264.0",
"@aws-sdk/lib-dynamodb": "^3.264.0",
"@baadal-sdk/utils": "0.12.0",
"@octokit/core": "^4.2.0",
"chalk": "4.1.2",
"core-js": "^3.27.2",
"mime-types": "^2.1.35",
"rimraf": "^4.1.2",
"short-uuid": "^4.2.2"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/mime-types": "2.1.1",
"@types/node": "18.11.19",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"babel-loader": "9.1.2",
"eslint": "8.33.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "4.3.8",
"jsonlint": "1.6.3",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"shx": "0.3.4",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-node-externals": "3.0.0"
},
"browserslist": [
"chrome >= 23"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/baadal/dapi.git"
},
"homepage": "https://github.com/baadal/dapi#readme"
}