-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"name": "code-visualizer",
"version": "1.0.0",
"description": "An online coding tool that allows you to visualy see what your code does. The vision of this project is to create a mockup of Replit that would allow users to see what their code is doing on on running their code.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node server.js",
"client-dev": "BROWSER=none yarn --cwd client start",
"server-dev": "nodemon server.js",
"dev": "concurrently \"yarn run server-dev\" \"yarn run client-dev\"",
"build": "yarn --cwd client run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Salman El Gamal",
"license": "MIT",
"dependencies": {
"@drdgvhbh/postgres-error-codes": "^0.0.6",
"bcrypt": "^5.1.1",
"child_process": "^1.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-session": "^1.18.1",
"express-ws": "^5.0.2",
"jsonwebtoken": "^9.0.2",
"node-pty": "^1.0.0",
"nodemailer": "^6.9.16",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"passport-saml": "^3.2.4",
"pg": "^8.13.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0"
}
}