forked from MidhaTahir/KodersHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "code-editor",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MidhaTahir/CodeEditor.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MidhaTahir/CodeEditor/issues"
},
"homepage": "https://github.com/MidhaTahir/CodeEditor#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"lodash": "^4.17.16",
"mocha": "^8.1.1",
"mongoose": "^5.9.28",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"process": "^0.11.10",
"react-media": "^1.10.0",
"react-reveal": "^1.2.2",
"resnap": "^1.0.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}