-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "w3schools-web-shop",
"version": "1.0.0",
"description": "Simple eCommerce web app developed for W3Schools templates",
"main": "app.js",
"engines": {
"node": "18.12.1"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon -I -q node app.js 2>&1 >> log.out & livereload -e 'ejs,js,html,css,scss' -x 'out,w3s-dynamic-storage/,node_modules/' -w 2000",
"admin:createadminuser": "run-func util/admin.js createAdministratorUser",
"admin:deleteadminuser": "run-func util/admin.js deleteAdministratorUser"
},
"devDependencies": {
"nodemon": "^2.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^7.6.2",
"better-sqlite3-session-store": "^0.1.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"dotenv": "^16.0.3",
"ejs": "^3.0.1",
"express": "^4.18.2",
"express-handlebars": "^3.0.2",
"express-session": "^1.17.1",
"express-validator": "^6.4.1",
"helmet": "^3.23.3",
"livereload": "^0.9.3",
"moment": "^2.27.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": "^2.6.7",
"nodemailer": "^6.4.6",
"serve-favicon": "^2.5.0",
"stripe": "^8.55.0",
"uuidv4": "^6.0.8",
"run-func": "^3.0.0",
"prompt-sync": "^4.2.0"
}
}