-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "twitchboard",
"version": "1.0.0",
"description": "Twitch referreal leaderboard",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"build": "sass ./public/scss/app.scss ./public/css/app.css",
"build:watch": "sass --watch ./public/scss/app.scss ./public/css/app.css",
"setup": "npm install && npm run build"
},
"keywords": [
"twitch",
"leaderboard"
],
"engines": {
"node": ">= 8.0.0"
},
"author": {
"name": "ClickPop",
"url": "https://clickpopmedia.com"
},
"contributors": [
{
"name": "Graham Vasquez",
"url": "https://github.com/GV14982"
},
{
"name": "Chris Vasquez",
"url": "https://github.com/cvasquez"
},
{
"name": "Sean Metzgar",
"url": "https://github.com/seanmetzgar"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ClickPop/twitchboard.git"
},
"bugs": "https://github.com/ClickPop/twitchboard/issues",
"homepage": "https://twitchboard.me",
"license": "MIT",
"dependencies": {
"airtable": "^0.8.1",
"bcrypt": "^3.0.7",
"bootstrap": "^4.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"pug": "^2.0.4",
"request-ip": "2.1.3",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"bootstrap": "^4.4.1",
"nodemon": "^2.0.2",
"sass": "^1.24.2"
}
}