-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "bsv-web-wallet",
"version": "0.3.3",
"private": true,
"main": "dist/public-api.js",
"homepage": ".",
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@sentry/react": "^6.7.2",
"@sentry/tracing": "^6.7.2",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"antd": "^4.16.2",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"buffer": "^6.0.3",
"gh-pages": "3.1.0",
"post-msg": "^1.0.5",
"qrcode.react": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hooks-global-state": "^1.0.1",
"react-scripts": "4.0.3",
"scryptlib": "^0.4.1",
"sensible-sdk": "^6.0.7",
"typescript": "^4.2.3",
"web-vitals": "^1.1.0"
},
"scripts": {
"watch": "webpack --config webpack.api.js --watch",
"fixBuffer": "webpack --entry ./src/bufferFix.js --output-path ./public",
"buildApi": "NODE_ENV=production webpack --mode=production --config webpack.api.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"single-test": "mocha --reporter spec --timeout 120000",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"env": {
"es2020": true
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.3.2",
"webpack-cli": "^4.7.2"
}
}