-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"name": "chatify",
"version": "1.12.3",
"description": "social app for friends",
"main": "index.js",
"license": "MIT",
"author": "Carlos Lantigua",
"private": false,
"scripts": {
"client-install": "yarn --cwd ./client install",
"run-server": "node server.js",
"start": "node server.js && yarn --cwd ./client start",
"server": "nodemon server.js",
"client": "yarn --cwd ./client start",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"postinstall": "yarn --cwd ./client install && yarn --cwd ./client build",
"test": "jest --watch --verbose"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"gravatar": "^1.8.0",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.1.13",
"mongoose": "^5.4.11",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^10.10.0"
},
"devDependencies": {
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.3.0"
},
"engine": {
"node": "10.15.0"
},
"resolutions": {
"ajv": "6.8.1"
}
}