-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 3.01 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
{
"name": "cbr-food-coop",
"version": "0.0.1",
"description": "CBR Food Coop membership app",
"productName": "CBR Food Coop",
"author": "David Mohr <[email protected]>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.mjs,.vue ./",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"serve": "quasar serve --history -p 8080 --proxy serve.js dist/spa",
"dev": "quasar dev",
"build": "quasar build",
"start": "node server.mjs",
"api": "DATABASE_URL='postgres://postgres:Pass2021!@localhost:5432/postgres' NODE_ENV=development nodemon server.mjs",
"mockdata": "DATABASE_URL='postgres://postgres:Pass2021!@localhost:5432/postgres' node create-mock-data.js",
"local-sql": "yarn local-run run-sql.js",
"local-run": "DATABASE_URL='postgres://postgres:Pass2021!@localhost:5432/postgres' NODE_ENV=development node",
"adduser": "yarn local-run api/scripts/adduser.mjs",
"cloud-adduser": "DATABASE_URL=\"$(heroku config:get DATABASE_URL)\" node api/scripts/adduser.mjs",
"cloud-sql": "yarn cloud-run run-sql.js",
"cloud-run": "DATABASE_URL=\"$(heroku config:get DATABASE_URL)\" node",
"heroku-postbuild": "quasar build",
"db": "docker run --rm -d --name dev-postgres -e POSTGRES_PASSWORD='Pass2021!' -v ${PWD}/test_db/:/var/lib/postgresql/data -p 5432:5432 postgres",
"db:shell": "docker exec -it dev-postgres psql -U postgres",
"db:stop": "docker stop dev-postgres"
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.74",
"@quasar/extras": "^1.12.4",
"axios": "^0.25.0",
"chalk": "^5.0.0",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.20.3",
"dotenv": "^14.3.0",
"express": "^4.17.2",
"form-data": "^4.0.0",
"fuzzysearch": "^1.0.3",
"got": "^12.0.1",
"inquirer": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.0",
"mailgun.js": "^4.1.6",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"quasar": "^2.4.13",
"serve-static": "^1.14.2",
"vue": "^3.2.29",
"vue-router": "^4.0.0",
"vuex": "^4.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@quasar/app": "^3.2.9",
"eslint": "^8.7.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.3.0",
"eslint-webpack-plugin": "^3.1.1",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"webpack-cli": "^4.9.2"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": "^16.10.0",
"npm": ">= 7.24.0",
"yarn": ">= 1.22.15"
}
}