-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·89 lines (89 loc) · 2.79 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
{
"name": "taal-wallet",
"version": "0.1.6",
"description": "The TAAL Wallet allows users to manage their own keys and sign transactions on the BSV network",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TAAL-GmbH/taal-wallet"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack -c ./config/webpack.config.ts",
"build": "webpack --node-env production -c ./config/webpack.config.ts",
"demo": "webpack serve -c ./config/webpack.demo.config.ts",
"server": "cd ./server && ts-node ./index.ts",
"lint": "eslint --ext .ts,.tsx ./src",
"tsc": "tsc --noEmit",
"test": "jest -c ./jest.config.js"
},
"dependencies": {
"@hookform/error-message": "^2.0.0",
"@reduxjs/toolkit": "^1.8.1",
"@types/bn.js": "^5.1.1",
"assert": "^2.0.0",
"bitcoin-address-validation": "^2.2.1",
"bn.js": "^5.2.1",
"bsv": "^1.5.6",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dayjs": "^1.11.3",
"deep-object-diff": "^1.1.7",
"idb": "^7.0.1",
"process": "^0.11.10",
"qrcode.react": "^3.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-fast-compare": "^3.2.0",
"react-hook-form": "^7.31.3",
"react-hot-toast": "^2.2.0",
"react-redux": "^8.0.1",
"react-tooltip": "^5.21.1",
"stas-js": "^3.0.3",
"stream-browserify": "^3.0.0",
"styled-components": "^6.0.7",
"wouter": "^3.1.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@types/chrome": "^0.0.186",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/redux-state-sync": "^3.1.3",
"@types/serviceworker": "^0.0.46",
"@types/styled-components": "^5.1.25",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^9.1.3",
"comment-json": "^4.2.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^4.3.0",
"firebase": "^9.8.1",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-chrome": "^0.7.2",
"jest-environment-jsdom": "^29.5.0",
"nodemon": "^2.0.16",
"prettier": "^2.5.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}