-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.84 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
{
"bugs": {
"url": "https://github.com/stellar-fox/fusion/issues"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"contributors": [
{
"name": "drmats",
"email": "xcmats@protonmail.com",
"url": "https://twitter.com/xcmats/"
},
{
"name": "syntaxval",
"email": "syntaxval@protonmail.com",
"url": "https://twitter.com/syntaxval/"
}
],
"dependencies": {
"@ledgerhq/hw-app-str": "^4.55.0",
"@ledgerhq/hw-transport-u2f": "^4.55.0",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"@stellar-fox/cryptops": "^1.0.4",
"@stellar-fox/redshift": "^1.0.2",
"@xcmats/js-toolbox": "^0.8.2",
"axios": "^0.18.0",
"bignumber.js": "^8.1.1",
"classnames": "^2.2.6",
"firebase": "^6.0.1",
"fuse.js": "^3.4.4",
"history": "^4.9.0",
"hoist-non-react-statics": "^3.3.0",
"jsdoc": "^3.6.1",
"jss": "^9.8.7",
"minami": "^1.2.3",
"prop-types": "^15.7.2",
"query-string": "^6.5.0",
"raf": "^3.4.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-event-listener": "^0.6.6",
"react-google-recaptcha": "^1.0.5",
"react-image-crop": "^7.0.2",
"react-jss": "^8.6.1",
"react-motion": "^0.5.2",
"react-number-format": "^4.0.7",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "^3.0.1",
"react-scrollbar-size": "^2.1.0",
"react-sparklines": "^1.7.0",
"react-swipeable-views": "^0.13.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"resolve-pathname": "^3.0.0",
"stellar-sdk": "^0.15.4",
"typeface-eczar": "0.0.72",
"typeface-roboto-condensed": "0.0.54"
},
"description": "Fusion (Stellar Fox frontend)",
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/history": "^4.7.2",
"@types/jss": "^9.5.8",
"@types/material-ui": "^0.21.6",
"@types/prop-types": "^15.7.1",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^6.0.12",
"@types/react-router-dom": "^4.3.3",
"@types/react-router-redux": "^5.0.18",
"@types/stellar-sdk": "^0.11.1",
"cross-env": "^5.2.0",
"eslint-plugin-jest": "^22.5.1",
"rimraf": "^2.6.3"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"homepage": "/",
"jest": {},
"keywords": [
"frontend",
"fusion",
"user interface"
],
"license": "Apache-2.0",
"main": "src/index.js",
"name": "fusion",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/stellar-fox/fusion"
},
"scripts": {
"build": "react-scripts build",
"build:jsdoc": "echo \"Generating jsdoc ...\" && jsdoc -c ./jsdoc.json -R ./README.md -r ./src/ -d ./jsdoc/",
"clean": "rimraf build",
"clean:jsdoc": "rimraf ./jsdoc",
"clean:modules": "rimraf package-lock.json && rimraf node_modules",
"jsdoc": "npm run clean:jsdoc && npm run build:jsdoc",
"eject": "react-scripts eject",
"lint": "eslint ./src/",
"shambhala:link": "rimraf ./src/lib/shambhala.client.js && ln -s ../../../shambhala/dist.lib/shambhala.client.js ./src/lib/shambhala.client.js",
"start": "cross-env PORT=3000 BROWSER=none react-scripts start",
"test": "npm run lint && jest",
"test:watch": "npm test -- --watch"
},
"version": "0.0.4"
}