-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 1.71 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
{
"name": "shouty",
"private": true,
"version": "0.1.0",
"main": "server.js",
"browser": "dist/shouty.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "node server.js"
},
"description": "a simple shoutbox application",
"repository": {
"type": "git",
"url": "git+https://github.com/nnmrts/shouty.git"
},
"keywords": [
"shoutbox"
],
"author": "Nano Miratus <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/nnmrts/shouty/issues"
},
"homepage": "https://github.com/nnmrts/shouty#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-angularjs-annotate": "^0.8.2",
"babel-preset-env": "^1.6.1",
"del": "^3.0.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^4.1.0",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^3.9.2",
"gulp-eslint": "^4.0.1",
"gulp-git": "^2.5.1",
"gulp-html-beautify": "^1.0.1",
"gulp-json-editor": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.3",
"gulp-total-task-time": "^0.1.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"live-server": "^1.2.0",
"lodash": "^4.17.4",
"rollup": "^0.54.1",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.2",
"vinyl-paths": "^2.1.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-useragent": "^1.0.8",
"jquery": "^3.2.1",
"jsonfile": "^4.0.0",
"mkdirp": "^0.5.1",
"multer": "^1.3.0",
"pica": "^4.0.1"
}
}