-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "SPA",
"version": "1.0.0",
"description": "Experiment using Vue, Express, and Mongo to create a single page app.",
"main": "server/index.js",
"private": "true",
"scripts": {
"dev": "nodemon server/index.js --exec babel-node --ignore client --ignore --client_dist",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeshift-array/SPA.git"
},
"keywords": [],
"author": "Makeshift Array",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeshift-array/SPA/issues"
},
"homepage": "https://github.com/makeshift-array/SPA#readme",
"dependencies": {
"axios": "^0.16.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-jwt": "^5.1.0",
"jsonwebtoken": "^7.3.0",
"mongoose": "^4.9.2",
"normalize.css": "^6.0.0",
"vue": "^2.2.6",
"vue-router": "^2.3.1",
"vuex": "^2.2.1",
"vuex-router-sync": "^4.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.0",
"html-webpack-plugin": "^2.28.0",
"mongoose-bcrypt": "^1.4.2",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.3",
"vue-loader": "^11.3.4",
"vue-template-compiler": "^2.2.6",
"webpack": "^2.3.2",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0"
}
}