-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
{
"name": "gubbins",
"version": "0.3.0",
"description": "A password-sharing web service",
"main": "server.js",
"dependencies": {
"angular": "^1.4.7",
"angular-route": "^1.4.8",
"body-parser": "^1.14.1",
"cors": "^2.7.1",
"cron": "^1.0.9",
"ejs": "^2.3.4",
"express": "^4.13.3",
"marked": "^0.3.5",
"mongodb": "^2.0.47",
"morgan": "^1.6.1"
},
"devDependencies": {
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"cross-env": "^5.0.5",
"gulp": "^3.9.0",
"gulp-angular-templatecache": "^1.8.0",
"gulp-babel": "^6.1.0",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^1.1.0",
"gulp-markdown": "^1.2.0",
"gulp-minify-css": "^1.2.1",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"gulp-wrapper": "^1.0.0",
"nodemon": "^1.8.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.1",
"yargs": "^3.30.0"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"start": "node server.js",
"dev": "cross-env LOCAL=true nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ansballard/gubbins.git"
},
"author": "Aaron Ballard",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ansballard/gubbins/issues"
},
"homepage": "https://github.com/ansballard/gubbins#readme"
}