-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 975 Bytes
/
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
{
"name": "winter-challenge",
"version": "1.0.0",
"description": "Goal tracker app for element youth group winter break",
"main": "server.js",
"engines": {
"node": "12.18.1",
"npm": "6.14.7"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run mongo\"",
"mongo": "~/Applications/mongo/mongod --dbpath ~/dev/projects/winter-challenge/data",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "currymich",
"license": "ISC",
"dependencies": {
"connect-mongo": "^4.6.0",
"crypto": "^1.0.1",
"eslint": "^8.4.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"lodash": "^4.17.21",
"moment": "^2.20.1",
"mongoose": "^5.13.13",
"morgan": "^1.9.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"save": "^2.3.2"
}
}