forked from anaprimawaty/pixelect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.63 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
{
"name": "pixelect",
"version": "1.0.0",
"description": "Poll on which photos to upload to Facebook",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server/index.js",
"dev": "ssh -N pixelect | nodemon --exec babel-node server/index.js",
"production": "NODE_ENV=production babel-node server/index.js",
"tunnel": "ssh -N pixelect",
"build": "NODE_ENV=production webpack --progress --color",
"lint": "eslint --ext .js,.vue .",
"fix": "eslint --ext .js,.vue --fix .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anaprimawaty/pixelect.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/anaprimawaty/pixelect/issues"
},
"homepage": "https://github.com/anaprimawaty/pixelect#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"body-parser": "^1.17.2",
"buefy": "^0.5.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"minio": "^3.1.3",
"multer": "^1.3.0",
"mysql": "^2.14.1",
"mysql2": "^1.4.1",
"sequelize": "^4.6.0",
"vue": "^2.4.2",
"vue-facebook-signin-button": "^1.0.1",
"vue-progressive-image": "^2.1.2",
"vue-resize": "^0.1.4",
"vue-router": "^2.7.0",
"vue2-dropzone": "^2.3.5",
"vuex": "^2.3.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"concurrently": "^3.5.0",
"css-loader": "^0.28.5",
"eslint": "^4.4.1",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^3.12.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.11.0",
"optimize-css-assets-webpack-plugin": "^3.0.0",
"prettier": "^1.5.3",
"style-loader": "^0.18.2",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2"
}
}