-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "publictalk",
"version": "1.0.0",
"description": "A place where people can talk publicly.",
"main": "backend/server",
"scripts": {
"start": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jurajtrappl/smalltalk.git"
},
"keywords": [
"social",
"network",
"talking",
"chat"
],
"author": "Juraj Trappl",
"license": "MIT",
"bugs": {
"url": "https://github.com/jurajtrappl/smalltalk/issues"
},
"homepage": "https://github.com/jurajtrappl/smalltalk#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bootstrap": "^5.0.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.3",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"validator": "^13.6.0"
},
"devDependencies": {
"concurrently": "^6.2.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.12"
}
}