-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.55 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vulcano",
"version": "0.3.0",
"description": "A MVC framework using Express 4",
"license": "MIT",
"engines": {
"node": "8.x"
},
"main": "app.js",
"scripts": {
"dev": "./node_modules/nodemon/bin/nodemon.js -q",
"start": "node app.js",
"pm2": "./node_modules/pm2/bin/pm2 start pm2.json",
"test": "npm run test:integration",
"test:integration": "./node_modules/.bin/mocha './test/integration/setup.js' './test/integration/**/*-test.js'",
"postinstall": "npm run build:website",
"gulp": "gulp --gulpfile gulpfile.app.js",
"webpack": "webpack --config webpack.app.js -w",
"build:website": "NODE_ENV=production webpack --config webpack.app.js && NODE_ENV=production gulp --gulpfile gulpfile.app.js",
"push": "git pull && git push",
"deploy:heroku": "npm run push && git push heroku master",
"deploy:server": "pm2 deploy pm2.json production"
},
"dependencies": {
"@mdi/font": "^2.8.94",
"archiver-promise": "^1.0.0",
"aws-sdk": "^2.120.0",
"axios": "^0.18.0",
"bluebird": "^3.4.6",
"blueimp-file-upload": "^9.19.1",
"body-parser": "^1.16.0",
"compression": "^1.6.2",
"connect-timeout": "^1.9.0",
"cron": "^1.3.0",
"crossroads": "^0.12.2",
"ejs": "^2.5.5",
"express": "4.16.2",
"express-jwt": "^5.1.0",
"express-useragent": "^1.0.12",
"foundation-sites": "^6.4.3",
"fs": "0.0.1-security",
"get-video-id": "^3.0.0",
"google-auth-library": "^1.3.1",
"googleapis": "^26.0.1",
"helmet": "^3.4.0",
"html-entities": "^1.2.1",
"i18next": "^10.4.1",
"image-downloader": "^3.2.2",
"include-all": "^4.0.3",
"jquery": "^3.2.1",
"jquery-number": "^2.1.6",
"jquery-serializejson": "^2.8.1",
"jquery.cookie": "^1.4.1",
"jsonapi-serializer": "^3.4.2",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongoose": "^5.0.6",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.8.0",
"multer": "^1.3.0",
"node-jsonapi-serializer": "^3.0.0",
"nodemon": "^1.11.0",
"nunjucks": "^3.0.0",
"path": "^0.12.7",
"pm2": "^2.4.0",
"promise.prototype.finally": "^3.1.0",
"request-promise": "^4.2.1",
"s3-uploader": "^2.0.3",
"sendgrid": "^5.2.3",
"sha1": "^1.1.1",
"sharp": "^0.21.0",
"signals": "^1.0.0",
"socket.io": "^2.0.4",
"timeago.js": "^3.0.2",
"underscore": "^1.8.3",
"uuid": "^3.1.0",
"webpack": "^2.6.1",
"yargs": "^11.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vulcan-estudios/vulcano"
},
"keywords": [
"node",
"heroku",
"express"
],
"devDependencies": {
"apidoc": "^0.17.6",
"autoprefixer": "^8.0.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.22.0",
"browser-sync": "^2.18.13",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"enzyme": "^3.3.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-if": "^2.0.2",
"gulp-postcss": "^7.0.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-util": "^3.0.8",
"mocha": "^5.0.1",
"node-sass": "^4.5.3",
"postcss": "^6.0.19",
"rimraf": "^2.6.1"
}
}