-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 820 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 820 Bytes
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
{
"name": "reddit-clone-api",
"version": "0.1.0",
"private": true,
"main": "index.js",
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.js"
},
"scripts": {
"dev": "nodemon ./index.js",
"build": "npm start",
"start": "node index.js",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-validator": "^5.3.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.12",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"jest": "^23.6.0",
"nodemon": "^1.18.10",
"prettier": "^1.15.2",
"supertest": "^3.3.0"
},
"prettier": {
"singleQuote": true
}
}