forked from floissac/WDI-GROUP-PROJECT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·105 lines (105 loc) · 2.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "wdigroupproject",
"version": "1.0.0",
"description": "wdi group project",
"main": "index.js",
"scripts": {
"start": "node index.js",
"postinstall": "bower install && gulp deploy",
"test": "nyc --reporter=html --reporter=text mocha --exit"
},
"author": "put group member names here",
"license": "ISC",
"gulp": {
"srcDir": "src/",
"destDir": "public/",
"src": {
"js": "src/js/",
"scss": "src/scss/",
"fonts": "src/fonts/",
"images": "src/images/"
},
"dest": {
"js": "public/js/",
"css": "public/css/",
"fonts": "public/fonts/",
"images": "public/images/"
},
"main": {
"js": "app.js",
"index": "index.html",
"scss": "style.scss",
"server": "index.js",
"gulpfile": "gulpfile.js",
"packageJson": "package.json"
},
"vendor": {
"js": "vendor.js",
"css": "vendor.css"
},
"output": {
"js": "app.js",
"css": "style.css"
},
"selectors": {
"all": "*",
"js": "**/*.js",
"css": "**/*.css",
"scss": "**/*.scss",
"html": "**/*.html",
"images": "**/*.{png,jpg,jpeg,gif,ico}",
"fonts": "**/*.{eot,svg,ttf,woff,woff2}"
}
},
"dependencies": {
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.13.2",
"express": "^4.14.0",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.1",
"morgan": "~1.6.1",
"request-promise": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"bower": "^1.8.0",
"browser-sync": "^2.17.6",
"chai": "^4.1.2",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-htmlhint": "^0.3.1",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-inject": "^4.1.0",
"gulp-jshint": "^2.0.2",
"gulp-minify-css": "^1.2.4",
"gulp-nodemon": "^2.2.1",
"gulp-notify": "^2.2.0",
"gulp-order": "^1.1.1",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-strip-css-comments": "^1.2.0",
"gulp-uglify": "^2.0.0",
"htmlhint-stylish": "^1.0.3",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"main-bower-files": "^2.13.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"require-dir": "^0.3.1",
"supertest": "^3.0.0"
},
"engines": {
"node": ">= 0.10.0"
}
}