-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"name": "aurora",
"description": "Browser-based, Online Code Editor",
"version": "1.0.0",
"author": "https://github.com/yenilikci",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yenilikci/Aurora.git"
},
"keywords": [
"code editor",
"browser"
],
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@auth0/auth0-react": "^1.12.0",
"@babel/preset-env": "^7.20.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.10.16",
"@mui/lab": "^5.0.0-alpha.117",
"@mui/material": "^5.10.16",
"@mui/styled-engine-sc": "^5.10.16",
"@reduxjs/toolkit": "^1.9.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.10",
"@types/react-router-dom": "^5.3.3",
"babel-jest": "^29.3.1",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"monaco-editor": "^0.34.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.4",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.2.3"
}
}