forked from near/near-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.31 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
{
"homepage": "https://wallet.near.org",
"name": "@near-wallet/frontend",
"version": "0.1.3",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ledgerhq/hw-transport-u2f": "^5.34.0",
"@near-wallet/feature-flags": "^0.1.0",
"@reduxjs/toolkit": "1.6.2",
"@sentry/browser": "^6.4.1",
"connected-react-router": "^6.6.0",
"escape-html": "^1.0.3",
"fetch-send-json": "0.0.2",
"generate-lockfile": "^0.0.11",
"js-sha256": "^0.9.0",
"lodash.assign": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isarray": "^4.0.0",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.mapvalues": "^4.6.0",
"lodash.merge": "^4.6.2",
"lodash.once": "^4.1.1",
"lodash.set": "^4.3.2",
"lodash.throttle": "^4.1.1",
"lodash.unset": "^4.5.2",
"lodash.update": "^4.10.2",
"mixpanel-browser": "^2.41.0",
"near-api-js": "^0.43.1",
"near-ledger-js": "^0.1.2",
"near-seed-phrase": "^0.2.0",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.1",
"query-string": "^7.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-recaptcha": "^2.1.0",
"react-google-recaptcha-v3-near": "^2.0.0",
"react-helmet": "^6.1.0",
"react-localize-redux": "^3.5.3",
"react-phone-number-input": "2.3.11",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-textfit": "^1.1.1",
"reduce-reducers": "^1.0.4",
"redux": "^4.1.0",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.5",
"reselect": "^4.0.0",
"styled-components": "^5.3.0",
"timeago.js": "^4.0.2"
},
"scripts": {
"predeploy": "yarn build",
"update:static": "cp src/wasm/multisig.wasm dist/multisig.wasm && cp src/wasm/main.wasm dist/main.wasm",
"start": "yarn update:static; parcel src/index.html --https --cert devServerCertificates/primary.crt --key devServerCertificates/private.pem",
"prebuild": "rm -rf dist/",
"build": "yarn run bundle && yarn run sentry",
"bundle": "NODE_ENV=production node ci/runBundler.js",
"sentry": "node ci/sentry-send-release.js",
"test": "jest",
"lint": "eslint --ext .js --ext .jsx .",
"fix": "eslint --ext .js --ext .jsx . --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepush": "yarn run test",
"precommit": "concurrently \"yarn run fix\" \".githooks/format-json\"",
"preinstall": "npx only-allow yarn"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@sentry/cli": "^1.65.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.1",
"babel-loader": "^8.1.0",
"concurrently": "^7.0.0",
"dotenv": "^11.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"jest": "^27.0.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"react-is": "^17.0.2"
}
}