-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "bootleg-app",
"version": "1.0.0",
"description": "Bootleg trading application",
"author": "Web3Studio Developers <[email protected]>",
"homepage": "https://consensys.github.io/web3studio-bootleg",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ConsenSys/web3studio-bootleg.git"
},
"scripts": {
"start": "concurrently -n w: npm:start:*",
"start:web": ". w3s-setup-ganache; react-scripts start",
"start:migrate": "lerna run migrate --scope bootleg-app-contracts -- -- --skip-dry-run --network=development --contracts_build_directory=$(pwd)/src/build/contracts",
"test": "yarn contracts:build && CI=true react-scripts test --env=jsdom",
"contracts:build": "lerna run build --scope bootleg-app-contracts -- --contracts_build_directory=$(pwd)/src/build/contracts",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"bugs": {
"url": "https://github.com/ConsenSys/web3studio-bootleg/issues"
},
"dependencies": {
"bootleg-app-contracts": "^1.0.0",
"drizzle": "^1.4.0",
"drizzle-react": "^1.2.0",
"drizzle-react-components": "^1.4.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.8",
"rimble-ui": "^0.7.1",
"styled-components": "^4.2.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"concurrently": "^4.1.0",
"jest": "23.6.0"
}
}