-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
85 lines (85 loc) · 2.38 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
{
"name": "atoll-ido",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:hardhat": "REEF=true hardhat test",
"test:watch": "npm-watch",
"deploy": "firebase deploy --only functions"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@openzeppelin/contracts": "^4.3.2",
"@polkadot/api": "^6.3.1",
"@polkadot/extension-dapp": "^0.40.4",
"@polkadot/keyring": "^7.7.1",
"@polkadot/rpc-provider": "^6.3.1",
"@polkadot/ui-keyring": "^0.86.3",
"@reef-defi/api": "^1.0.1",
"@reef-defi/api-derive": "^1.0.1",
"@reef-defi/evm-provider": "^1.0.1",
"@reef-defi/hardhat-reef": "^1.0.0",
"@reef-defi/type-definitions": "^1.0.1",
"@reef-defi/types": "^1.0.1",
"@stripe/stripe-js": "^1.21.1",
"axios": "^0.24.0",
"cors": "^2.8.5",
"date-fns": "^2.25.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase": "^9.1.3",
"firebase-admin": "^10.0.0",
"firebase-functions": "^3.15.7",
"framer-motion": "^4",
"graphql": "^15.6.1",
"history": "5",
"next": "11.1.2",
"next-absolute-url": "^1.2.2",
"next-firebase-auth": "^0.13.4",
"npm-watch": "^0.11.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-firebaseui": "^5.0.2",
"react-hook-form": "^7.18.0",
"react-markdown": "^7.1.0",
"react-query": "^3.29.0",
"reactfire": "^4.2.0",
"stripe": "^8.186.1",
"subscriptions-transport-ws": "^0.9.19"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"babel-jest": "^27.3.1",
"chai": "^4.2.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.6.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1"
},
"resolutions": {
"@polkadot/api": "^6.3.1",
"@polkadot/keyring": "^7.7.1",
"@polkadot/types": "^6.3.1",
"@polkadot/util": "^7.7.1",
"@polkadot/types-known": "^6.3.1",
"@polkadot/rpc-provider": "^6.3.1"
},
"watch": {
"test:hardhat": "{contracts,test}/*.js"
}
}