-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
63 lines (63 loc) Β· 1.66 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
{
"name": "vue-mini-social-network",
"version": "1.0.0",
"description": "A mini-social-network created with VueJS!!",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"dev": "webpack -d --watch",
"build": "webpack -p --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yTakkar/Vue-Mini-Social-Network.git"
},
"keywords": [
"mini-social-network",
"vue",
"social-network",
"SPA"
],
"author": "yTakkar",
"license": "ISC",
"bugs": {
"url": "https://github.com/yTakkar/Vue-Mini-Social-Network/issues"
},
"homepage": "https://github.com/yTakkar/Vue-Mini-Social-Network#readme",
"dependencies": {
"axios": "^0.16.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.17.2",
"client-sessions": "^0.8.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"express-validator": "^3.2.0",
"handy-image-processor": "^1.0.1",
"handy-log": "^1.0.2",
"handy-notification": "^1.0.23",
"handy-timeago": "^1.0.1",
"jquery": "^3.2.1",
"multer": "^1.3.0",
"mysql": "^2.13.0",
"nodemon": "^1.19.0",
"serve-favicon": "^2.4.3",
"vue-resource": "^1.3.4",
"vue-router": "^2.7.0",
"vuex": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^4.5.0",
"eslint-plugin-vue": "^3.12.0",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13"
}
}