-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.01 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
{
"name": "bakbridge",
"description": "Bak Bridge is a drop-in module for your users to preload, create and mint native tokens.",
"author": "Bakrypt.io",
"version": "0.5.4",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Wolfy18/bakbridge.git"
},
"files": [
"dist",
"README.md",
"package.json"
],
"dependencies": {
"@ant-design/cssinjs": "1.18.0-alpha.5",
"@ant-design/icons": "^5.2.6",
"@cardano-foundation/cardano-connect-with-wallet-core": "^0.2.5",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^16.18.65",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"antd": "^5.12",
"axios": "^1.6.2",
"dayjs": "^1.11.11",
"formik": "^2.4.5",
"html-react-parser": "^5.0.7",
"mime": "^4.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": ">=4.3.5 <5.3.0",
"web-vitals": "^2.1.4",
"yup": "^1.3.2"
},
"scripts": {
"start": "craco start",
"build": "BUILD_PATH='./dist' craco build && tsc --emitDeclarationOnly",
"test": "craco test",
"eject": "craco eject",
"format": "prettier --write ./**/*.{js,ts,tsx}",
"lint": "tsc --noEmit && eslint src/**/*.{js,ts,tsx}"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.tsx": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-transform-private-property-in-object": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@craco/craco": "^7.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@types/jest": "^27.5.2",
"@types/pdf-viewer-reactjs": "^2.2.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"alias-hq": "^6.2.3",
"babel-jest": "^29.7.0",
"css-loader": "^2.1.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.1.0",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.4"
}
}