-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 797 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 797 Bytes
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
{
"name": "chainlink-keepers",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build ",
"export": "next export",
"deploy": "npm run build && npm run export",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@truffle/hdwallet-provider": "^1.4.1",
"dotenv": "^10.0.0",
"next": "^12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-fast-marquee": "^1.2.1",
"react-player": "^2.9.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"truffle-flattener": "^1.5.0",
"web3": "^1.4.0"
},
"devDependencies": {
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"truffle-plugin-verify": "^0.5.20"
}
}