go-ethereum/package.json

41 lines
1.2 KiB
JSON
Raw Normal View History

2022-09-08 22:18:30 +03:00
{
"name": "geth-site",
"private": false,
"description": "The website for geth.ethereum.org",
"version": "2.0.0",
"author": "Nicolás Quiroz <nicolas.quiroz@ethereum.org>",
"scripts": {
"dev": "next dev",
2022-09-08 23:10:20 +03:00
"build": "npm run lint && next build && npm run format:fix",
2022-09-08 22:18:30 +03:00
"start": "next start",
2022-09-08 23:10:20 +03:00
"lint": "next lint",
"format:fix": "prettier . --write --config .prettierrc --ignore-path .prettierignore --loglevel warn"
2022-09-08 22:18:30 +03:00
},
"dependencies": {
2022-10-26 05:24:49 +03:00
"@chakra-ui/icons": "^2.0.11",
2022-09-08 22:18:30 +03:00
"@chakra-ui/react": "^2.3.2",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
2022-09-09 15:13:20 +03:00
"@mdx-js/loader": "^2.1.3",
"@mdx-js/react": "^2.1.3",
"@next/mdx": "^12.3.0",
"focus-visible": "^5.2.0",
2022-09-08 22:18:30 +03:00
"framer-motion": "^7.3.2",
2022-11-09 20:36:24 +03:00
"next": "^13.0.2",
2022-09-08 22:18:30 +03:00
"react": "18.2.0",
2022-09-09 16:42:22 +03:00
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0"
2022-09-08 22:18:30 +03:00
},
"devDependencies": {
"@types/node": "18.7.16",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
2022-09-09 16:42:22 +03:00
"@types/react-syntax-highlighter": "^15.5.5",
2022-09-08 22:18:30 +03:00
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
2022-09-08 23:10:20 +03:00
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
2022-09-08 22:18:30 +03:00
"typescript": "4.8.2"
}
}