-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
{
"name": "mevn-boilerplate",
"version": "1.0.0",
"description": "simple MEVN stack boilerplate",
"scripts": {
"serve": "vue-cli-service serve --open ./client/main.js",
"build-client": "vue-cli-service build",
"build-server": "babel server -d dist/server ",
"build": "npm run build-server && npm run build-client",
"dev-build": "babel server --out-dir dist/server --watch",
"dev-express": "nodemon ./dist/server/index.js",
"start": "concurrently \"npm:dev-build\" \"npm:dev-express\" \"npm:serve\"",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"axios": "^0.18.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"bootstrap-vue": "^2.0.0-rc.21",
"core-js": "^2.6.5",
"esdoc-standard-plugin": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.5.11",
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuejs-datepicker": "^1.5.4",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-unit-mocha": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"chai": "^4.1.2",
"cors": "^2.8.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"morgan": "^1.9.1",
"node-sass": "^4.9.0",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UncleRemus/mevn-boilerplate.git"
},
"author": "Ron McCranie <@UncleRemus>",
"license": "ISC",
"bugs": {
"url": "https://github.com/UncleRemus/mevn-boilerplate/issues"
},
"homepage": "https://github.com/UncleRemus/mevn-boilerplate#readme"
}