forked from jenkoian/hacktoberfest-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "hacktoberfest-checker",
"version": "3.0.1",
"description": "Small app to see if you have fulfilled the requirements for a Hacktoberfest t-shirt",
"main": "index.js",
"engines": {
"node": "^6.11.1"
},
"scripts": {
"prestart": "babel public/js/*.js --presets es2015 --out-file public/js/main-compiled.js --source-maps --ignore *-compiled.js",
"start": "node index.js",
"babel-dev": "babel public/js/*.js --presets es2015 --out-file public/js/main-compiled.js --source-maps --ignore *-compiled.js --watch",
"dev": "nodemon index.js",
"eslint": "eslint controllers/**/*.js public/**/*.js index.js",
"eslint-fix": "eslint controllers/**/*.js public/**/*.js index.js --fix"
},
"keywords": [
"hacktoberfest"
],
"author": "Ian Jenkins",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.15.1",
"compression": "^1.6.2",
"dotenv": "^4.0.0",
"express": "^4.13.4",
"express-flash": "0.0.2",
"express-handlebars": "^3.0.0",
"github": "^11.0.0",
"helper-timeago": "^0.1.0",
"lodash": "^4.17.4",
"method-override": "^2.3.5",
"moment": "^2.18.1",
"morgan": "^1.7.0",
"q": "^1.5.0",
"tachyons": "^4.8.1",
"zepto": "^1.2.0"
},
"devDependencies": {
"eslint": "^4.8.0",
"nodemon": "^1.12.1"
},
"repository": "[email protected]:jenkoian/hacktoberfest-checker.git"
}