-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "vue-notes-app",
"version": "1.0.0",
"description": "A notes app created with Vue, MySQL, VueX & VueRouter.",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"dev": "webpack -d --watch",
"build": "webpack -p --watch"
},
"author": "yTakkar <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^4.5.0",
"eslint-plugin-vue": "^3.12.0",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.4.2"
},
"dependencies": {
"axios": "^0.16.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-handlebars": "^3.0.0",
"handy-log": "^1.0.1",
"handy-notification": "^1.0.23",
"handy-timeago": "^1.0.1",
"jquery": "^3.2.1",
"mysql": "^2.13.0",
"serve-favicon": "^2.4.3",
"vue": "^2.4.2",
"vue-resource": "^1.3.4",
"vue-router": "^2.7.0",
"vuex": "^2.3.1"
}
}