-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (32 loc) · 1.06 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
{
"name": "flavor-saver",
"version": "1.0.0",
"description": "As a food enthusiast, I want to use the Flavor Saver app to discover new recipes, save my favorite recipes for future reference, and share my own recipes with others.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"seed": "node seeds/seed.js",
"build-css":"tailwindcss build src/style.css -o public/style.css",
"watch":"tailwindcss build src/style.css -o public/style.css --watch"
},
"author": "Chris Lose, Timothy Watson, Avery Gallagan, Andrew Hamerly",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"handlebars": "^4.7.6",
"express-session": "^1.17.1",
"pg": "^8.11.3",
"sequelize": "^6.3.5"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"prettier": "^2.1.2",
"tailwindcss": "^3.4.3"
}
}