-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.73 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.73 KB
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
{
"name": "code-learner",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"postinstall": "husky install",
"format": "prettier --cache --write .",
"test": "jest"
},
"dependencies": {
"@codemirror/collab": "^6.0.0",
"@codemirror/language": "^6.8.0",
"@types/styled-components": "^5.1.26",
"@uiw/codemirror-extensions-basic-setup": "^4.21.8",
"@uiw/codemirror-extensions-langs": "^4.21.8",
"@uiw/codemirror-themes": "^4.21.8",
"@uiw/react-codemirror": "^4.21.8",
"axios": "^1.4.0",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.8.6",
"react-icons": "^4.10.1",
"react-loader-spinner": "^5.3.4",
"react-query": "^3.39.3",
"react-router-dom": "^6.14.1",
"socket.io-client": "^4.7.1",
"styled-components": "^6.0.4",
"styled-reset": "^4.5.1",
"thememirror": "^2.0.1",
"y-codemirror.next": "^0.3.2",
"y-websocket": "^1.4.5",
"yjs": "^13.6.7"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.0",
"vite-tsconfig-paths": "^4.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix --max-warnings=0"
]
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.svg$": "jest-svg-transformer",
"^.+\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}