-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 869 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
{
"name": "cst336-rotten-potatoes",
"version": "1.0.0",
"description": "CST336: Final Project for Team 8, a movie review website",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.mjs",
"server": "nodemon index.mjs",
"build-css": "sass public/css/styles.scss public/css/styles.css",
"watch-css": "sass --watch public/css/styles.scss public/css/styles.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.1",
"mysql2": "^3.11.4"
},
"devDependencies": {
"nodemon": "^3.1.7",
"sass": "^1.81.0"
}
}