-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "yolo-backend",
"version": "0.0.0",
"private": true,
"Access-Control-Allow-Origin": "*",
"dependencies": {
"@azure/identity": "^1.2.5",
"@azure/storage-blob": "^12.4.0",
"address-validator": "^0.2.3",
"axios": "^0.21.1",
"azure-storage": "^2.10.3",
"babel-eslint": "^10.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-session": "^1.17.1",
"into-stream": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.8.9",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"node-env-file": "^0.1.8",
"nodemailer": "^6.4.17",
"nodemailer-express-handlebars": "^4.0.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"smartystreets-javascript-sdk": "^1.4.4",
"swig-email-templates": "^6.0.0",
"uuid": "^8.3.2",
"uuidv1": "^1.6.14",
"uuidv4": "^6.2.6"
},
"scripts": {
"start": "node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && npm install --only=dev && npm install && npm run build",
"server": "nodemon server.js --ignore \"**/scripts/**\"",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm run start-dev --prefix client"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.4"
},
"engines": {
"node": "12.16.3"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}