-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
112 lines (112 loc) · 3.51 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
112
{
"name": "codelabz",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:fix": "prettier --write . --fix",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -s public",
"prettier:write": "npx prettier --write .",
"cy:run": "cypress run --headless --browser chrome",
"cy:open": "cypress open --browser chrome",
"test": "start-server-and-test dev http://localhost:5173 cy:run",
"emulator-import": "firebase emulators:start --import=testdata",
"emulator": "firebase emulators:start",
"emulator-export": "firebase emulators:export",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@gmcfall/yjs-firestore-provider": "^1.0.0-rc.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.115",
"@mui/material": "^5.11.4",
"@mui/styles": "^5.11.2",
"@rollup/plugin-babel": "^6.0.3",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"chalk": "^5.2.0",
"codemirror": "^5.56.0",
"color-thief-react": "^1.0.2",
"dompurify": "^3.0.5",
"elasticlunr": "^0.9.5",
"emoji-picker-react": "^4.4.9",
"firebase": "^9.17.2",
"history": "^4.10.1",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"quill": "^1.3.7",
"quill-cursors": "^4.0.2",
"quill-delta-to-html": "^0.12.1",
"rc-color-picker": "^1.2.6",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^18.2.0",
"react-headroom": "^3.0.0",
"react-image": "^4.0.3",
"react-image-crop": "^8.6.12",
"react-markdown": "^6.0.2",
"react-redux": "^7.2.1",
"react-redux-firebase": "^3.7.0",
"react-responsive": "^8.1.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.3",
"react-select": "^5.7.0",
"react-social-login-buttons": "^3.4.0",
"react-syntax-highlighter": "^15.4.3",
"redux": "^4.0.5",
"redux-auth-wrapper": "^3.0.0",
"redux-firestore": "^0.15.0",
"redux-thunk": "^2.3.0",
"simple-peer": "^9.11.1",
"start-server-and-test": "^1.15.3",
"swiper": "^10.2.0",
"url": "^0.11.0",
"validator": "^13.6.0",
"y-quill": "^0.1.5",
"yjs": "^13.6.6"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-backgrounds": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-measure": "^6.5.16",
"@storybook/builder-vite": "^0.3.0",
"@storybook/client-api": "^6.5.16",
"@storybook/preview-web": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"common-tags": "^1.8.2",
"cypress": "^12.3.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"less": "^4.1.3",
"lint-staged": "^14.0.0",
"vite": "^4.0.0",
"webpack": "^4.46.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}