-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 979 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 979 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
39
40
41
{
"name": "loc-planner",
"version": "1.0.0",
"type": "module",
"description": "## About",
"main": "index.js",
"scripts": {
"start": "node backend/server",
"server": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uoshvis/locPlanner.git"
},
"keywords": [
"React",
"Redux",
"Express",
"Node.js"
],
"author": "uoshvis",
"license": "ISC",
"bugs": {
"url": "https://github.com/uoshvis/locPlanner/issues"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1",
"nodemon": "^2.0.21",
"path": "^0.12.7"
}
}