-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 3.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "nextjs-with-typescript",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"build-sitemap": "next-sitemap",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "next lint",
"prepare": "husky install",
"precommit": "lint-staged",
"prettier": "prettier --write .",
"fmt": "yarn prettier && yarn lint",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"fb:seed-db": "node ./__seed__/script.js",
"fb:seed-db-cloud": "node ./__seed__/script.js SEED_FIREBASE_FIRESTORE_IN_CLOUD",
"fb:login": "firebase login",
"fb:emu": "firebase emulators:start --import=./__seed__/firebase-seed --project demo-website",
"fb:exp-seed": "firebase emulators:export ./__seed__/firebase-seed --project demo-website"
},
"dependencies": {
"@babel/core": "^7.21.0",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.13.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.0.14",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.14.5",
"@mui/x-data-grid": "^7.14.0",
"@supabase/supabase-js": "^2.47.10",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.1.0",
"@toast-ui/react-editor": "^3.2.2",
"@types/prismjs": "^1.26.4",
"firebase": "^10.13.0",
"html-to-image": "^1.11.11",
"isomorphic-dompurify": "^2.15.0",
"next": "^14.2.10",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.45.2",
"react-markdown": "^9.0.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"string-width": "^7.2.0",
"swr": "^2.2.4",
"tsconfig-paths-webpack-plugin": "^4.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^2",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.6.0",
"@next/bundle-analyzer": "^14.2.6",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^15.0.7",
"@types/node": "^22.5.2",
"@types/react": "^18.3.4",
"babel-loader": "^9.1.2",
"babel-plugin-import": "^1.13.8",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.5",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.9",
"next-sitemap": "^4.1.8",
"prettier": "^3.0.3",
"storybook": "^8.2.9",
"typescript": "^5.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{ts,tsx}": [
"next lint"
],
"*": [
"prettier --write"
]
}
}