This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.71 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": "hello-edge-and-node",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "yarn test && npx hardhat test",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "yarn jest -- --watch",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"prebuild-storybook": "rimraf storybook-static",
"build-storybook": "build-storybook"
},
"dependencies": {
"@apollo/client": "^3.4.15",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.1",
"ethers": "^5.4.7",
"graphql": "^15.6.0",
"hardhat": "^2.6.5",
"next": "11.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"theme-ui": "^0.11.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@metamask/providers": "^8.1.1",
"@emotion/styled": "^11.3.0",
"@storybook/addon-actions": "^6.3.10",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-links": "^6.3.10",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@storybook/react": "^6.3.10",
"@types/jest": "^27.0.2",
"@types/react": "17.0.26",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "4.4.3",
"webpack": "^5.60.0"
}
}