-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.93 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "crypto-alerts",
"version": "1.0.0",
"description": "Nuxt + Express quickstart",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node -- server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production babel-node server/index.js",
"seed": "babel-node ./api/db/seed"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.26",
"@fortawesome/free-solid-svg-icons": "5.12.0",
"@fortawesome/vue-fontawesome": "0.1.9",
"@nuxtjs/auth": "4.8.5",
"@nuxtjs/axios": "5.9.2",
"@nuxtjs/dotenv": "^1.4.1",
"@vue/eslint-plugin": "^4.2.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.2.0",
"celebrate": "^11.0.1",
"cors": "^2.8.5",
"debug": "~4.1.1",
"express": "~4.17.1",
"express-jwt": "^5.3.1",
"express-winston": "^4.0.2",
"http-errors": "~1.7.3",
"joi": "^14.3.1",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"lodash.camelcase": "^4.3.0",
"metismenujs": "^1.1.0",
"mime-db": "1.43.0",
"mime-lookup": "0.0.2",
"moment": "^2.24.0",
"mongoose": "^5.8.6",
"mongoose-delete": "^0.5.1",
"mongoose-paginate": "git+https://github.com/andhovesyan/mongoose-paginate.git",
"mongoose-schema-extend": "git+https://github.com/kennylmay/mongoose-schema-extend.git",
"mongoose-timestamp": "^0.6.0",
"morgan": "~1.9.1",
"node-sass": "^4.13.0",
"nodemailer": "^6.4.2",
"nodemailer-mailgun-transport": "2.0.0",
"nuxt": "^2.11.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sass": "^1.24.3",
"sass-loader": "^8.0.0",
"svgo": "1.3.2",
"vue": "^2.6.11",
"vue-meta": "2.3.1",
"vue-router": "3.1.3",
"vuex": "3.1.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"babel-plugin-module-resolver": "4.0.0",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"faker": "^4.1.0",
"firebase-admin": "^8.9.0",
"form-data": "^3.0.0",
"lodash": "^4.17.15",
"mime": "^2.4.4",
"mime-types": "2.1.26",
"multer": "^1.4.2",
"nodemon": "^2.0.2",
"npm": "^6.13.4",
"pluralize": "^8.0.0",
"socketio-jwt": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/andhovesyan/express-skeleton-app.git"
},
"keywords": [
"express",
"expressjs",
"node",
"nodejs",
"mongodb",
"rest",
"api"
],
"author": "Andranik Hovesyan",
"license": "ISC",
"bugs": {
"url": "https://github.com/andhovesyan/express-skeleton-app/issues"
},
"homepage": "https://github.com/andhovesyan/express-skeleton-app#readme",
"private": true
}