-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (86 loc) · 2.19 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
{
"name": "@anypay/web3-checkout",
"version": "0.2.1",
"private": true,
"dependencies": {
"@babel/plugin-syntax-typescript": "^7.20.0",
"@craco/craco": "^6.4.3",
"@metamask/detect-provider": "^2.0.0",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.74.0",
"axios": "^0.24.0",
"bsv": "1.5.6",
"dayjs": "^1.10.7",
"ethers": "^6.2.3",
"react": "^18.0.0",
"react-accessible-accordion": "^5.0.0",
"react-confetti": "^6.1.0",
"react-countdown": "^2.3.2",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-modal": "^3.16.3",
"react-qr-code": "^2.0.15",
"react-select": "^5.7.4",
"styled-components": "^5.3.1",
"styled-media-query": "^2.1.2",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"web3": "^1.9.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "NODE_PATH=./src/ craco test",
"example": "npm run build && cp -R ./build/static ./example && serve ./example -p 8080",
"scp": "scp -r -i ~/.ssh/chef build/* [email protected]:/opt/anypayx.com/invoices"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.3",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.16",
"axios-mock-adapter": "^1.20.0",
"babel-plugin-styled-components": "^1.13.2",
"concurrently": "^6.3.0",
"craco-plugin-env": "^1.0.5",
"jest-styled-components": "^7.0.5",
"react-scripts": "^5.0.1",
"serve": "^12.0.1"
},
"resolutions": {
"styled-components": "^5",
"babel-loader": "8.1.0"
}
}