-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 911 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
{
"name": "first-full-stack-homework",
"version": "1.0.0",
"description": "![GA Logo](https://ga-dash.s3.amazonaws.com/production/assets/logo-9f88ae6c9c3871690e33280fcf557f33.png)",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-sass": "sass -w sass/src:public/styles",
"watch-nodemon": "nodemon server.js",
"dev": "open http://localhost:4000/ && concurrently --handle-input -n sass,server -c 'bgGreen.bold,bgYellow.bold' 'npm:watch-sass' 'npm:watch-nodemon' rs",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://git.generalassemb.ly/kathy/first-full-stack-homework.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"helmet": "^4.6.0",
"method-override": "^3.0.0",
"mongoose": "^6.0.10"
}
}