-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"name": "cuculus-roadmap",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"sst:dev": "sst bind next dev",
"build": "next build",
"start": "next start",
"lint": "next lint -f stylish",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,html}\"",
"prepare": "husky install",
"lint-staged": "lint-staged",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.3",
"@octokit/openapi-types": "^18.0.0",
"next": "^13.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.0"
},
"devDependencies": {
"@fontsource/material-icons": "^5.0.6",
"@fontsource/roboto": "^5.0.7",
"@storybook/addon-essentials": "^7.2.0",
"@storybook/addon-interactions": "^7.2.0",
"@storybook/addon-links": "^7.2.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling": "^1.3.5",
"@storybook/blocks": "^7.2.0",
"@storybook/nextjs": "^7.2.0",
"@storybook/react": "^7.2.0",
"@storybook/testing-library": "^0.2.0",
"@svgr/webpack": "^8.0.1",
"@types/node": "^20.4.5",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"aws-cdk-lib": "2.84.0",
"constructs": "10.1.156",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"sst": "^2.36.7",
"storybook": "^7.2.0",
"typescript": "^5.1.6"
},
"volta": {
"node": "18.17.0",
"npm": "9.8.1"
}
}