-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
125 lines (125 loc) · 3.43 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
116
117
118
119
120
121
122
123
124
125
{
"name": "pera-wallet-web",
"version": "1.7.2",
"private": true,
"dependencies": {
"@hipo/react-ui-toolkit": "1.1.1",
"@perawallet/onramp": "1.1.1",
"@ledgerhq/errors": "6.12.2",
"@ledgerhq/hw-app-algorand": "6.27.18",
"@ledgerhq/hw-transport-web-ble": "6.27.18",
"@ledgerhq/hw-transport-webhid": "6.27.18",
"algosdk": "2.4.0",
"bip39": "3.1.0",
"date-fns": "2.29.3",
"date-fns-tz": "1.3.7",
"lottie-react": "2.3.1",
"process": "0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal": "3.16.1",
"react-qrcode-logo": "2.8.0",
"react-router-dom": "6.4.3",
"react-tooltip": "4.5.0",
"scrypt-async": "2.0.1",
"tweetnacl": "1.0.3",
"web-vitals": "3.0.4",
"webfontloader": "1.6.28"
},
"scripts": {
"start": "env-cmd -e common,development react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"build:staging": "env-cmd -e common,staging npm run build",
"build:production": "env-cmd -e common,production npm run build",
"check-package-updates": "npx npm-check-updates",
"prepare": "husky install",
"prettify": "prettier --config ./.prettierrc.js --write \"src/**/*.{ts,tsx}\"",
"type-check:watch": "tsc --watch"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"react",
"react-hooks",
"@typescript-eslint",
"jsx-a11y"
],
"extends": [
"react-app",
"react-app/jest",
"@hipo/eslint-config-base",
"@hipo/eslint-config-react",
"@hipo/eslint-config-typescript",
"plugin:jsx-a11y/recommended",
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@hipo/eslint-config-base": "4.2.1",
"@hipo/eslint-config-react": "2.3.0",
"@hipo/eslint-config-typescript": "1.2.0",
"@hipo/stylelint-config-base": "3.2.0",
"@types/jest": "29.2.3",
"@types/node": "16.11.36",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/react-modal": "3.13.1",
"@types/react-router-dom": "5.3.3",
"@types/scrypt-async": "1.3.2",
"@types/web-bluetooth": "0.0.16",
"@types/webfontloader": "1.6.35",
"@typescript-eslint/parser": "5.43.0",
"buffer": "6.0.3",
"classnames": "2.3.2",
"crypto-browserify": "3.12.0",
"env-cmd": "10.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.5.0",
"fake-indexeddb": "4.0.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"react-app-rewired": "2.2.1",
"react-error-overlay": "6.0.9",
"react-scripts": "5.0.1",
"sass": "1.56.1",
"stream-browserify": "3.0.0",
"stylelint": "14.15.0",
"stylelint-no-unsupported-browser-features": "6.0.1",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.3.0",
"typescript": "4.8.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --config ./.prettierrc.js --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint"
],
"src/**/*.{css,scss}": [
"stylelint"
]
},
"overrides": {
"eslint": "7.17.0"
},
"engines": {
"node": "18.0.0",
"npm": "8.6.0"
}
}