-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "list-wala",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/shawn-dsilva/list-wala.git"
},
"author": "Shawn D'silva",
"license": "ISC",
"bugs": {
"url": "https://github.com/shawn-dsilva/list-wala/issues"
},
"homepage": "https://github.com/shawn-dsilva/list-wala#readme",
"dependencies": {
"@hapi/joi": "^16.1.8",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.4.1",
"concurrently": "^6.0.0",
"connect-mongodb-session": "^2.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"moment-timezone": "^0.5.28",
"mongoose": "^5.12.3",
"morgan": "^1.9.1",
"react-router-dom": "^5.1.2",
"session-file-store": "^1.4.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}