This repository has been archived by the owner on Oct 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "icememe",
"version": "0.0.1",
"description": "A meme sharing site",
"productName": "ICEMEME",
"cordovaId": "org.cordova.quasar.app",
"author": "SENG 513 W19 Group 11",
"private": true,
"scripts": {
"lint": "eslint --max-warnings 0 --ext .js,.vue src migrations",
"test": "echo \"No test specified\" && exit 0",
"dev-client": "quasar dev",
"dev-server": "nodemon src/server/main.js",
"dev": "concurrently \"yarn dev-client\" \"yarn dev-server\"",
"build": "yarn run quasar build",
"start": "node src/server/main.js",
"heroku-postbuild": "yarn run knex migrate:latest"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"bcrypt": "^3.0.6",
"concurrently": "^4.1.0",
"connect-history-api-fallback": "^1.6.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.3",
"moment": "^2.24.0",
"nodemon": "^1.18.10",
"pg": "^7.9.0",
"quasar": "1.0.0-beta.11",
"serve-static": "^1.13.2",
"slugify": "^1.3.4",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"underscore": "^1.9.1",
"validator": "^10.11.0",
"vue-masonry-css": "^1.0.3",
"vue-socket.io": "^3.0.7"
},
"devDependencies": {
"@quasar/app": "^1.0.0-beta.0",
"@quasar/quasar-app-extension-dotenv": "^1.0.0-beta.4",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0",
"strip-ansi": "=3.0.1"
},
"engines": {
"node": "11.13.0",
"npm": "6.9.0",
"yarn": "1.15.2"
},
"browserslist": [
"last 1 version, not dead, ie >= 11"
],
"resolutions": {
"ajv": "6.8.1"
}
}