This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.53 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
{
"name": "tesc-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.0",
"@fidm/x509": "^1.2.1",
"@material-ui/core": "^4.11.2",
"@metamask/detect-provider": "^1.2.0",
"@nivo/bar": "^0.67.0",
"@nivo/core": "^0.67.0",
"@nivo/pie": "^0.67.0",
"@solidity-parser/parser": "^0.11.1",
"@tenon-io/tenon-codeblock": "^1.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.5.0",
"axios": "^0.21.1",
"bitset": "^5.1.1",
"classnames": "^2.2.6",
"coingecko-api": "^1.0.10",
"craco-plugin-scoped-css": "^1.1.0",
"env-cmd": "^10.1.0",
"highlightjs-solidity": "^1.0.21",
"js-file-download": "^0.4.12",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"node-sass": "^4.13.1",
"react": "^17.0.1",
"react-browser-frame": "^1.0.9",
"react-day-picker": "^7.4.8",
"react-dom": "^17.0.1",
"react-highlight": "^0.13.0",
"react-highlight.js": "^1.0.7",
"react-icons": "^4.1.0",
"react-pro-sidebar": "^0.4.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-toastify": "^7.0.3",
"reveal.js": "^4.1.0",
"rlp-browser": "^1.0.1",
"sass": "^1.30.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"web-vitals": "^0.2.4",
"web3": "^1.3.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"sol-cp-registry": "copyfiles --exclude \"../TeSC-registry/contracts/Migrations.sol\" -f ../TeSC-registry/contracts/*.sol ./src/ethereum/contracts/registry/",
"sol-cp-tesc": "copyfiles --exclude \"../TeSC-EIP/contracts/Migrations.sol\" -f ../TeSC-EIP/contracts/*.sol ./src/ethereum/contracts/",
"sol-cp": "npm run sol-cp-registry && npm run sol-cp-tesc",
"sol-compile": "cd src/ethereum/ && truffle compile",
"sol-build": "npm run sol-cp && npm run sol-compile",
"chain-console": "truffle console --network teams",
"chain": "ganache-cli --allowUnlimitedContractSize -l 90000000 -d"
},
"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"
]
},
"devDependencies": {
"copyfiles": "^2.4.1",
"ganache-cli": "^6.12.1"
}
}