-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "direct-auth",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p re:watch terminal-start",
"build": "run-s re:build ui:build",
"re:build": "bsb -make-world -clean-world",
"re:watch": "bsb -make-world -clean-world -w",
"re:clean": "bsb -clean-world",
"terminal-start": "FORCE_COLOR=true yarn start | cat",
"start": "react-scripts start",
"ui:build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"update-schema": "npx get-graphql-schema http://localhost:8080/v1/graphql -h 'x-hasura-admin-secret=testing' -j > graphql_schema.json"
},
"devDependencies": {
"@reasonml-community/graphql-ppx": "^1.0.1",
"bs-platform": "^8.3.1",
"npm-run-all": "^4.1.5",
"react-scripts": "^4.0.0"
},
"dependencies": {
"@apollo/client": "^3.2.5",
"@apollo/link-ws": "^2.0.0-beta.3",
"@toruslabs/torus-direct-web-sdk": "^3.4.1",
"@yawaramin/prometo": "^0.11.1",
"arweave": "^1.9.1",
"bs-css-emotion": "^2.1.0",
"bs-log": "^1.3.0",
"decco": "^1.3.0",
"ethereumjs-util": "^7.0.7",
"graphql": "^15.4.0",
"onegraph-auth": "^3.2.0",
"re-classnames": "^5.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-loader-spinner": "^3.1.14",
"react-modal": "^3.11.2",
"reason-apollo-client": "^1.0.0-beta.0",
"reason-promise": "^1.1.2",
"reason-react": "^0.9.1",
"subscriptions-transport-ws": "^0.9.18",
"truffle-privatekey-provider": "^1.5.0",
"web3": "^1.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}