-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
82 lines (82 loc) · 1.82 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
{
"name": "react-bkash",
"version": "3.0.0",
"description": "A React Component for Accepting Bkash Payments using React",
"author": "Shahriar Shojib <shahriar_shojib@hotmail.com>",
"license": "MIT",
"repository": "github.com/shahriar-shojib/React-bKash.git",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "tsc",
"ci": "yarn --frozen-lockfile",
"check:format": "prettier -c .",
"check:lint": "eslint .",
"format": "prettier -c -w .",
"lint:fix": "eslint --fix .",
"test": "jest"
},
"devDependencies": {
"@swc/core": "^1.2.210",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.7.4"
},
"files": [
"dist"
],
"keywords": [
"react",
"typescript",
"npm",
"bkash",
"bkash-pgw",
"bkash-react"
],
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"jsc": {
"parser": {
"syntax": "typescript",
"tsx": true
},
"transform": {
"react": {
"runtime": "automatic"
}
}
},
"module": {
"type": "commonjs"
}
}
]
},
"testRegex": "src/__tests__/.*\\.spec\\.ts?$",
"testEnvironment": "jsdom"
},
"dependencies": {
"react-dom": "^18.2.0"
}
}