-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 950 Bytes
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
{
"name": "js-playground",
"version": "1.0.0",
"description": "Educational JavaScript Playground",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"install-all": "npm install && cd client && npm install",
"seed": "node server/seed.js",
"test:isogram": "node tests/isogram.test.js",
"test:ejemplo": "node tests/ejemplo-uso.js"
},
"keywords": ["education", "javascript", "playground"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongoose": "^7.5.0",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"vm2": "^3.9.19",
"express-validator": "^7.0.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.1"
}
}