forked from gskril/ens-registrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 990 Bytes
/
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
{
"name": "web3-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf node_modules .next",
"prettier:check": "prettier --check src/**/*",
"prettier:fix": "prettier --write src/**/*"
},
"dependencies": {
"got": "^12.5.3",
"next": "13.1.1",
"next-plausible": "^3.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@styled-jsx/plugin-sass": "^4.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"typescript": "^4.9.4"
}
}