-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "helloworld",
"version": "0.0.1",
"description": "HelloWorld is an application designed to connect users throughout the world with an interactive map display",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"pretty": "prettier --write \"./**/*.{js,jsx,json,css}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/HelloWorldHnR/HelloWorld.git"
},
"keywords": [
"HelloWorld",
"chat",
"maps",
"connect",
"global"
],
"contributors": [
"Francis Hodianto",
"Dhafin Razaq Oktoyuzan",
"Lim Jin Hao",
"Keane Chan Jun Yu"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/HelloWorldHnR/HelloWorld/issues"
},
"homepage": "https://github.com/HelloWorldHnR/HelloWorld#readme",
"devDependencies": {
"nodemon": "^2.0.6",
"prettier": "2.2.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-query-parser": "^1.1.0",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongoose": "^5.11.7",
"ramda": "^0.27.1",
"socket.io": "^3.0.5"
}
}