-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "graffmap",
"version": "1.0.0",
"description": "graffmap reborn",
"private": true,
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node app.js",
"dev": "gulp",
"test": "mocha -R spec ./test/*.js",
"lint": "eslint ./ || exit 0",
"lint-fix": "eslint ./ --fix || exit 0"
},
"license": "MIT",
"dependencies": {
"@google-cloud/vision": "^0.14.0",
"body-parser": "^1.16.0",
"browser-sync": "^2.18.13",
"cookie-parser": "^1.4.3",
"express": "^4.14.1",
"express-mongo-db": "^2.0.3",
"gm": "^1.23.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-clean-css": "^3.7.0",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^3.3.0",
"gulp-notify": "^3.0.0",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"main-bower-files": "^2.13.1",
"mongodb": "^2.2.31",
"morgan": "^1.8.0",
"node-uuid": "^1.4.8",
"pug": "^2.0.0-beta6",
"serve-favicon": "^2.3.0",
"sharp": "^0.18.4",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.1.0",
"gulp-plumber": "^1.1.0",
"mocha": "^3.1.0",
"prettier": "^1.9.2",
"supertest": "^3.0.0"
}
}