-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "hangman_game",
"version": "1.0.0",
"description": "A hangman game. It's always about food.",
"main": "server.js",
"scripts": {
"build:scss": "node-sass ./scss/ -o ./public/css/",
"watch:scss": "yarn build:scss && node-sass -w -r ./scss/ -o ./public/css/",
"start": "yarn build:scss && node server.js",
"dev": "concurrently \"nodemon -e js,ejs server.js\" \"yarn watch:scss\"",
"build": "concurrently \"nodemon -e js,ejs server.js\" \"yarn build:scss\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dani-santos-code/hangman.git"
},
"keywords": [
"hangman",
"full-stack",
"js",
"vanilla",
"js"
],
"author": "Daniele Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/dani-santos-code/hangman/issues"
},
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"morgan": "^1.9.1",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2"
},
"homepage": "https://github.com/dani-santos-code/hangman#readme"
}