-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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": "vue-shopping-list",
"version": "0.1.0",
"description": "Shopping list made with vue",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JFusco/vue-shopping-list"
},
"engines": {
"node": ">=7.7.0 <=8.1.x",
"npm": "~5.x.x"
},
"author": {
"name": "Joe Fusco",
"email": "[email protected]"
},
"scripts": {
"version": "git add .",
"postversion": "git push origin master --tags",
"dev": "nodemon --exec babel-node server/lib/index.js --ignore client --throw-deprecation",
"build": "babel server/**/*.js -d dist",
"serve": "NODE_ENV=production node dist/server/lib/index.js",
"dump": "mongodump --gzip --out server/data/dump/db-`date '+%Y-%m-%d_%H:%M:%S'`"
},
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"font-awesome": "^4.7.0",
"moment": "^2.18.1",
"mongoose": "^4.11.4",
"morgan": "^1.8.2",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"vue": "^2.4.1",
"vue-resource": "^1.3.4",
"vue-router": "^2.7.0",
"vuex": "^2.3.1",
"vuex-router-sync": "^4.2.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"dotenv": "^4.0.0",
"eslint": "^4.2.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-vue": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.6",
"vue-eslint-parser": "^2.0.1-beta.2",
"vue-loader": "^13.0.2",
"vue-template-compiler": "^2.2.4",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.18.2"
}
}