-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 841 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
{
"name": "launchstore",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"debug": "nodemon --inspect=0.0.0.0:9229 src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm-run-all -p nodemon browsersync",
"nodemon": "nodemon src/server.js",
"browsersync": "browser-sync start --proxy http://localhost:5000 --files 'public, src/app/views'"
},
"dependencies": {
"connect-pg-simple": "^6.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"faker": "^5.1.0",
"intl": "^1.2.5",
"method-override": "^3.0.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"nunjucks": "^3.2.1",
"pg": "^8.2.2"
},
"devDependencies": {
"bcryptjs": "^2.4.3",
"browser-sync": "^2.26.12",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
}
}