-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
45
46
47
48
{
"name": "foosilator",
"version": "0.1.0",
"description": "A Middle-out Foosball Platform",
"main": "foosilator.js",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.15.2",
"elo-js": "1.0.1",
"envoodoo": "2.1.1",
"express": "4.14.0",
"express-session": "1.15.0",
"hbs": "4.0.1",
"helmet": "3.4.0",
"passport": "0.3.2",
"passport-facebook": "2.1.1",
"passport-google-oauth20": "1.0.0",
"passport-local": "1.0.0",
"pg-promise": "5.6.3"
},
"devDependencies": {
"clean-css": "^3.4.23",
"node-sass": "^4.1.1",
"nodemon": "^1.11.0",
"standard": "8.6.0"
},
"scripts": {
"start": "node app.js",
"start-dev": "NODE_ENV=development nodemon -e js,hbs app.js",
"test": "./node_modules/.bin/standard",
"build-css": "node-sass --include-path scss scss/app.scss public/css/app.css",
"minify-css": "cleancss -o public/css/app-min.css public/css/app.css",
"watch-styles": "nodemon -e scss -x \"npm run build-css && npm run minify-css\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/endfoos/foosilator.git"
},
"keywords": [
"foosball"
],
"author": "Lewis Christie",
"license": "MIT",
"bugs": {
"url": "https://github.com/endfoos/foosilator/issues"
},
"homepage": "https://github.com/endfoos/foosilator#readme"
}