-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
130 lines (130 loc) · 3.91 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "conditional-markets-interface",
"version": "0.11.8",
"description": "Sight PM Interface/Beta Development",
"repository": "github:gnosis/conditional-markets-interface",
"main": "app/src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"truffle": "truffle",
"migrate": "truffle migrate",
"test": "truffle test --network test",
"test-app": "cross-env jest",
"start": "cd ./app && webpack-dev-server --hot --config ./webpack.dev.js",
"build": "cd ./app && cross-env webpack -p --config ./webpack.prod.js",
"build-profiling": "cd ./app && cross-env NODE_ENV=production webpack -p --config ./webpack.prod.js --profile --json > stats.json",
"compile": "truffle compile --all",
"lintjs": "eslint .",
"fmtjs": "eslint . --fix"
},
"keywords": [
"Oracle",
"Ethereum"
],
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@date-io/moment": "^1.3.13",
"@gnosis.pm/conditional-tokens-contracts": "^1.0.1",
"@gnosis.pm/conditional-tokens-market-makers": "^1.5.0",
"@hot-loader/react-dom": "^16.13.0",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/pickers": "^3.2.10",
"@truffle/contract": "4.1.15",
"@truffle/hdwallet-provider": "^1.0.35",
"@use-it/interval": "^0.1.3",
"@walletconnect/web3-provider": "^1.0.0-beta.47",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"canonical-weth": "^1.4.0",
"classnames": "^2.2.6",
"color": "^3.1.2",
"connected-react-router": "^6.6.1",
"decimal.js-light": "^2.5.0",
"final-form": "^4.20.0",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
"moment": "^2.26.0",
"normalize.css": "^8.0.1",
"openzeppelin-solidity": "^2.4.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-blockies": "^1.4.1",
"react-dom": "^16.13.1",
"react-final-form": "^6.5.0",
"react-google-recaptcha": "^2.1.0",
"react-hot-loader": "^4.12.21",
"react-markdown": "^4.3.1",
"react-media": "^1.10.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-select": "^3.1.0",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.5",
"subscriptions-transport-ws": "^0.9.16",
"web3": "^1.2.8",
"web3modal": "^1.7.0"
},
"author": "Gnosis",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@gnosis.pm/truffle-nice-tools": "^1.3.1",
"ajv": "^6.12.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"common-tags": "^1.8.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"indent-string": "^4.0.0",
"inquirer": "^7.1.0",
"jest": "^26.0.1",
"json-x-loader": "^0.3.0",
"lint-staged": "^10.2.9",
"moment-locales-webpack-plugin": "^1.2.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"rlp": "^2.2.5",
"run-with-testrpc": "^0.3.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"svg-url-loader": "^6.0.0",
"truffle": "^5.1.25",
"truffle-assertions": "^0.9.2",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}