This repository was archived by the owner on Jun 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.93 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "woopa",
"version": "0.0.1",
"private": true,
"engines": {
"node": "4.2.1",
"npm": "3.8.x"
},
"scripts": {
"start": "node app.js",
"test": "npm run lint",
"lint": "eslint --ignore-path .gitignore .",
"dbinit": "node scripts/dbinit.js",
"dbpopulate": "node scripts/dbpopulate.js",
"heroku-postbuild": "npm run dbinit && npm run dbpopulate"
},
"dependencies": {
"better-console": "^0.2.4",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.3.3",
"del": "^2.2.0",
"express": "^4.13.3",
"express-session": "^1.13.0",
"extend": "^3.0.0",
"fs-promise": "^0.5.0",
"glob": "^6.0.4",
"map-stream": "0.0.6",
"method-override": "^2.3.0",
"morgan": "^1.6.1",
"multer": "^1.1.0",
"nunjucks": "^2.0.0",
"nunjucks-date-filter": "^0.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg-hstore": "2.3.2",
"pg-promise": "^3.4.3",
"pretty-ms": "^2.1.0",
"require-dot-file": "^0.4.0",
"run-sequence": "^1.1.5",
"serve-favicon": "^2.3.0",
"yamljs": "^0.2.6"
},
"devDependencies": {
"eslint": "^2.5.1",
"eslint-config-google": "^0.4.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-chmod": "^1.3.0",
"gulp-clone": "^1.0.0",
"gulp-concat": "^2.6.0",
"gulp-concat-css": "^2.2.0",
"gulp-copy": "0.0.2",
"gulp-dedupe": "0.0.2",
"gulp-flatten": "^0.2.0",
"gulp-header": "^1.7.1",
"gulp-help": "^1.6.1",
"gulp-if": "^2.0.0",
"gulp-less": "^3.0.5",
"gulp-livereload": "^3.8.0",
"gulp-minify-css": "^1.2.4",
"gulp-nodemon": "^2.0.2",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.0",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-rtlcss": "^1.0.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5"
}
}