-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 860 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 860 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
{
"name": "nodejs-auth-project",
"version": "1.0.0",
"description": "Authentication Template For React and NodeJS",
"main": "index.js",
"engine": {
"node": "10.16.0",
"npm": "6.9.0"
},
"dependencies": {
"axios": "^0.26.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"node-redis": "^0.1.7",
"pouchdb": "^7.2.2",
"pouchdb-authentication": "^1.1.3",
"pouchdb-find": "^7.2.2",
"redis": "^4.0.4",
"redis-json": "^6.0.3"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"backend": "nodemon index.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\""
},
"devDependencies": {
"concurrently": "^7.0.0"
}
}