-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "@giveth/commons-template-app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently 'npm:ganache' 'npm:deploy:start'",
"start:app": "react-scripts start",
"start:env": "concurrently 'npm:ganache' 'npm:deploy'",
"deploy:start": "npm run deploy && npm run start:app",
"deploy": "npm explore @giveth/commons-abc-contracts -- npm run deploy",
"ganache": "npm explore @giveth/commons-abc-contracts -- npm run ganache",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@giveth/commons-abc-contracts": "^0.2.1",
"@giveth/commons-abc-lib": "^0.2.4",
"@giveth/commons-components": "^0.3.1",
"@material-ui/core": "^3.9.3",
"chart": "^0.1.2",
"chart.js": "^2.8.0",
"node-sass": "^4.11.0",
"rc-slider": "^8.6.9",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.8",
"web3": "^1.0.0-beta.52"
},
"devDependencies": {
"concurrently": "^4.1.0",
"dotenv": "^7.0.0",
"ganache-cli": "^6.4.2",
"npm-link-shared": "^0.5.6",
"truffle": "^5.0.12",
"truffle-hdwallet-provider": "^1.0.6",
"truffle-privatekey-provider": "^1.1.0",
"wait-on": "^3.2.0"
},
"resolutions": {
"**/react": "16.8.6",
"**/react-dom": "16.8.6"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}