-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 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
{
"name": "credentials-api-demo",
"version": "1.0.0",
"private": true,
"description": "credentials-api-demo",
"author": "Tiago Fragoso",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write .",
"lint": "yarn run lint:js && yarn run lint:types",
"lint:js": "eslint src --ext \"js,ts,tsx\" && prettier --check .",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.13",
"audit-ci": "^6.3.0",
"babel-plugin-styled-components": "^2.0.7",
"ethers": "^5.6.9",
"gatsby": "^4.18.1",
"gatsby-plugin-image": "^2.17.0",
"gatsby-plugin-manifest": "^4.18.1",
"gatsby-plugin-react-helmet": "^5.17.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.17.0",
"gatsby-plugin-styled-components": "^5.17.0",
"gatsby-source-filesystem": "^4.17.0",
"gatsby-transformer-sharp": "^4.17.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^17.0.45",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}