This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "code-sync",
"version": "1.0.0",
"description": "CodeSync is cloud collaborative tool for student , Teachers and Professional to enjoy coding!",
"main": "server.js",
"scripts": {
"start": "node server/server",
"server": "nodemon server/server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"deployment-script": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DE-PROJECT/code-sync.git"
},
"keywords": [
"CodeSync",
"Coding tool",
"Cloud tool for coding"
],
"author": "Vivekkumar Javiya",
"license": "MIT",
"bugs": {
"url": "https://github.com/DE-PROJECT/code-sync/issues"
},
"homepage": "https://github.com/DE-PROJECT/code-sync#readme",
"dependencies": {
"axios": "^0.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^5.5.1",
"heroicons": "^1.0.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.14",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.7",
"randomstring": "^1.2.1",
"socket.io": "^4.1.2"
},
"cspell": {
"version": "0.2",
"ignorePaths": [],
"dictionaryDefinitions": [],
"dictionaries": [],
"words": [],
"ignoreWords": [],
"import": []
}
}