-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 941 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
35
36
{
"name": "launchstore",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"debug": "nodemon --inspect=0.0.0.0:9229 src/server.js",
"start": "node src/server.js",
"dev": "npm-run-all -p nodemon browsersync",
"nodemon": "nodemon src/server.js",
"browsersync": "browser-sync start --proxy http://localhost:5000 --files 'src/app/views', 'public'",
"seed": "node seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^6.1.0",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"express-session": "^1.18.1",
"faker": "^5.1.0",
"intl": "^1.2.5",
"method-override": "^3.0.0",
"multer": "^1.4.2",
"nodemailer": "^6.9.9",
"nunjucks": "^3.2.1",
"pg": "^8.2.1"
},
"devDependencies": {
"browser-sync": "^3.0.3",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
}
}