-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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": "padbase",
"version": "1.0.0",
"description": "Data Management App for The Animal Pad",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node server.js",
"server": "cross-env NODE_ENV=development nodemon server.js",
"msandbox": "node scripts/mongooseSandbox.js",
"populate": "node scripts/masterPopulate.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Patrick Strassmann",
"license": "MIT",
"dependencies": {
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.1.1",
"moment": "^2.27.0",
"mongoose": "^5.9.25",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"uuid": "^8.3.1"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}