-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
107 lines (107 loc) · 3.02 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
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
104
105
106
107
{
"name": "Horter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.18.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"pre-push": "npm test"
}
},
"scripts": {
"test": " TEST_DB=hortertest RESET_DB=true mocha --recursive --exit",
"lint": "eslint --fix --ignore-path .eslintignore .",
"start": "node server/index.js",
"build": "webpack --config webpack.configSW.js --mode production",
"build-dev": "webpack-dev-server --mode development",
"prestart-dev": "webpack --mode development",
"start-dev": "nodemon server/index.js",
"build-watch": "webpack --watch --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxwellBoecker/Horter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MaxwellBoecker/Horter/issues"
},
"homepage": "https://github.com/MaxwellBoecker/Horter#readme",
"dependencies": {
"@google-cloud/dialogflow": "^3.2.0",
"@mdi/js": "^5.5.55",
"aws-sdk": "^2.747.0",
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"buefy": "^0.9.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chalk": "^4.1.0",
"connect-pg-simple": "^6.2.1",
"connect-session-sequelize": "^7.0.1",
"dialogflow": "^1.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fuse.js": "^6.4.1",
"gmap-vue": "^1.4.0",
"lodash": "^4.17.20",
"mobile-device-detect": "^0.4.3",
"mocha": "^8.1.3",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": ">=2.6.1",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"pg": "^8.3.3",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"react": "^16.13.1",
"sequelize": "^6.3.4",
"uuid": "^8.3.0",
"vue": "^2.6.12",
"vue-carousel-3d": "^0.2.0",
"vue-drag-resize": "^1.4.2",
"vue-material-design-icons": "^4.9.0",
"vue-quick-chat": "^1.2.5",
"vue-router": "^3.4.3",
"vue2-touch-events": "^2.3.2",
"vuejs-logger": "^1.5.4",
"winston": "^3.3.3",
"node-forge": ">=0.10.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"sass": "^1.26.10",
"sass-loader": "^10.0.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^5.1.3"
}
}