-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "www.ethtokyo.com",
"version": "1.0.0",
"description": "Ethereum JP website",
"main": "src/pages/_app.tsx",
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjp/ethtokyo-website.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjp/ethtokyo-website/issues"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build-static": "next build && next export",
"start": "serve out",
"lint": "yarn run biome lint ./src",
"lint:fix": "yarn run biome lint ./src --write",
"lint:fix:css": "stylelint --fix \"**/*.{js,jsx,ts,tsx}\"",
"format": "yarn run biome format ./src --write",
"check": "yarn run biome check ./src",
"clean": "yarn run biome check ./src --write",
"build-storybook": "storybook build"
},
"packageManager": "[email protected]",
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@emotion/babel-plugin": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.5",
"@storybook/addon-actions": "^7.0.6",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/nextjs": "^7.0.6",
"@styled/typescript-styled-plugin": "^1.0.1",
"@types/node": "^18.15.11",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"hamburger-react": "^2.5.0",
"lint-staged": "^13.0.3",
"postcss-styled-syntax": "^0.4.0",
"react-hook-form": "^7.45.4",
"react-icons": "^4.9.0",
"react-social-icons": "^6.7.0",
"serve": "^14.2.1",
"simple-git-hooks": "^2.8.0",
"storybook": "^7.0.6",
"storybook-addon-designs": "^6.3.1",
"stylelint": "^16.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"typescript": "^5.4.2"
}
}