This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
110 lines (110 loc) · 3.48 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
{
"name": "rif-marketplace-ui",
"version": "1.4.3",
"description": "RIF Marketplace provides a digital catalogue with a wide range of decentralised services.",
"keywords": [
"RIF",
"marketplace",
"decentralized",
"RSK"
],
"homepage": "/",
"bugs": {
"url": "https://github.com/rsksmart/rif-marketplace-ui/issues/"
},
"license": "MIT",
"files": [
"types",
"lib",
"dist"
],
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "https://github.com/rsksmart/rif-marketplace-ui.git"
},
"scripts": {
"start": "cp -f ./tsconfig.dev.json ./tsconfig.json && react-scripts start",
"build": "cp -f ./tsconfig.dev.json ./tsconfig.json && react-scripts build",
"build:prod": "cp -f ./tsconfig.prod.json ./tsconfig.json && react-scripts build",
"test": "cp -f ./tsconfig.dev.json ./tsconfig.json && react-scripts test --unhandled-rejections=strict",
"coverage": "cp -f ./tsconfig.dev.json ./tsconfig.json && react-scripts test --unhandled-rejections=strict --coverageProvider=v8 --coverage --watchAll=false",
"lint": "cp -f ./tsconfig.dev.json ./tsconfig.json && eslint --ext=ts --ext=tsx ."
},
"dependencies": {
"@feathersjs/authentication": "^4.5.10",
"@feathersjs/authentication-client": "^4.5.10",
"@feathersjs/feathers": "^4.5.10",
"@feathersjs/rest-client": "^4.5.10",
"@feathersjs/socketio-client": "^4.5.10",
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@rsksmart/erc677": "^1.0.2",
"@rsksmart/erc721": "^1.0.0",
"@rsksmart/rif-marketplace-notifier": "0.0.1-dev.2",
"@rsksmart/rif-marketplace-storage": "^0.1.0",
"@rsksmart/rif-ui": "^0.6.1",
"@rsksmart/rsk-utils": "^1.1.0",
"big.js": "^6.0.2",
"cids": "^1.0.2",
"material-ui-dropzone": "^3.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"socket.io-client": "^2.3.0",
"typescript": "^3.9.7",
"web3": "^1.3.4",
"web3-eth": "^1.3.4",
"web3-eth-contract": "^1.3.4",
"web3-utils": "^1.3.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.2.2",
"@types/big.js": "^6.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.21.5",
"jest-mock-extended": "^1.0.10",
"ts-jest": "^26.4.4"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"types": "types/index.d.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.ts"
}
}
}