-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
76 lines (76 loc) · 2.26 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
{
"name": "vendere-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.4.0",
"@creativebulma/bulma-tooltip": "^1.2.0",
"@emurgo/cardano-serialization-lib-browser": "file:./src/cardano/serialization-lib/@emurgo/cardano-serialization-lib-browser",
"@fortawesome/fontawesome-free": "^5.15.4",
"bulma-checkradio": "^2.1.2",
"bulma-extensions": "^6.2.7",
"firebase": "^9.2.0",
"font-awesome": "^4.7.0",
"fuse.js": "^6.4.6",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-autosuggest": "^10.1.0",
"react-bootstrap-sweetalert": "^5.2.0",
"react-data-table-component": "^7.4.5",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-flippy": "^1.1.0",
"react-helmet": "^6.1.0",
"react-infinite-scroll-component": "^6.1.0",
"react-lazy-load-image-component": "^1.5.1",
"react-lazyload": "^3.2.0",
"react-loading-skeleton": "^3.0.1",
"react-moment": "^1.1.1",
"react-palette": "^1.0.2",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"request-promise": "^4.2.6",
"sass": "^1.45.0",
"styled-components": "^5.3.3",
"wasm-loader": "^1.3.0",
"webfontloader": "^1.6.28"
},
"scripts": {
"start": "craco start",
"build:testnet": "env-cmd -f .env.development craco build",
"build:mainnet": "GENERATE_SOURCEMAP=false env-cmd -f .env.production craco build",
"deploy:testnet": "yarn run build:testnet && firebase use testnet && firebase deploy --only hosting",
"deploy:mainnet": "yarn run build:mainnet && firebase use mainnet && firebase deploy --only hosting",
"test": "craco test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "https://github.com/OnChainLabs/Vendere"
},
"devDependencies": {
"env-cmd": "^10.1.0"
}
}