-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "nft-test",
"version": "1.0.0",
"description": "Blockchain NFT Test with React and Solidity",
"directories": {
"test": "test"
},
"author": "jamie pickett",
"license": "ISC",
"dependencies": {
"3id-did-provider": "^1.1.0",
"@ceramicnetwork/cli": "^1.1.0",
"@ceramicnetwork/http-client": "^1.0.7",
"@ceramicstudio/idx-tools": "^0.11.0",
"@chainlink/contracts": "^0.2.1",
"@openzeppelin/contracts": "^4.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@truffle/hdwallet-provider": "^1.4.1",
"bootstrap": "^4.6.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"dotenv": "^10.0.0",
"elliptic": "^6.5.4",
"express": "^4.17.1",
"html-react-parser": "^1.2.7",
"ipfs": "^0.55.4",
"ipfs-api": "^26.1.2",
"ipfs-http-client": "^50.1.2",
"js-sha3": "^0.8.0",
"keccak": "^3.0.1",
"key-did-provider-ed25519": "^1.1.0",
"orbit-db": "^0.26.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"sleep": "^6.3.0",
"solc": "^0.8.6",
"system-sleep": "^1.3.7",
"truffle": "^5.3.11",
"truffle-plugin-verify": "^0.5.15",
"uint8arrays": "^2.1.10",
"web-vitals": "^1.1.2",
"web3": "^1.4.0",
"web3.storage": "^3.1.0"
},
"scripts": {
"start": "export PORT=3000 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts 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"
]
},
"proxy": "http://localhost:6000"
}