-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
41
{
"name": "periods-tracker",
"version": "1.0.0",
"description": "server-periods-tracker",
"main": "server.js",
"scripts": {
"start": "node server",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"client": "cd client && npm start",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"engines": {
"node": "15.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srivastavayushi/periods-tracker.git"
},
"author": "Kaustuv and Ayushi",
"license": "ISC",
"bugs": {
"url": "https://github.com/srivastavayushi/periods-tracker/issues"
},
"homepage": "https://github.com/srivastavayushi/periods-tracker#readme",
"dependencies": {
"concurrently": "^6.2.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-openid-connect": "^2.4.0",
"express-session": "^1.17.2",
"mongoose": "^5.12.12",
"node-geocoder": "^3.27.0",
"passport": "^0.4.1",
"passport-auth0": "^1.4.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}