-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
{
"name": "codeninjas-python-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently --kill-others \"npm run app\" \"npm run start\" \"npm run python\" ",
"app": "vite",
"build": "tsc && vite build",
"python": "python python/app.py",
"start": "nodemon server/server.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"monaco-themes": "^0.4.4",
"mongodb": "^6.3.0",
"mongoose": "^8.1.3",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.3",
"process": "^0.11.10",
"puppeteer": "^22.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-code-blocks": "^0.1.6",
"react-dom": "^18.2.0",
"react-dotenv": "^0.1.3",
"react-draggable": "^4.4.6",
"react-dropdown": "^1.11.0",
"react-icons": "^5.0.1",
"react-monaco-editor": "^0.55.0",
"react-router-dom": "^6.22.1",
"react-tabs": "^6.0.2",
"replit-client": "^0.25.0",
"selenium-webdriver": "^4.17.0",
"vite-plugin-env-compatible": "^2.0.1"
},
"devDependencies": {
"@monaco-editor/react": "^4.6.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/selenium-webdriver": "^4.1.21",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}