-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
{
"name": "vue-express-template",
"version": "1.0.0",
"description": "Template for generating a web application with an Express back-end, VueJS front-end, and JWT authentication.",
"main": "index.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlueSCar/vue-express-template.git"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"amqplib": "^0.5.5",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap-vue": "^2.2.2",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg-promise": "^10.3.5",
"vue": "^2.6.11",
"vue-router": "^3.1.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"vue-cli-plugin-axios": "^0.0.4",
"vue-cli-plugin-bootstrap-vue": "^0.6.0",
"vue-cli-plugin-fontawesome": "^0.2.0",
"vue-template-compiler": "^2.6.11"
},
"author": "BlueSCar",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlueSCar/vue-express-template/issues"
},
"homepage": "https://github.com/BlueSCar/vue-express-template#readme"
}