-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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": "@openrepairshop/server",
"description": "A customizable repair shop solution for tracking Customers, Appointments, Tickets, and more",
"version": "0.1.0",
"homepage": "",
"license": "MIT",
"main": "src",
"author": {
"name": "Jay Mathis",
"email": "[email protected]"
},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^13.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run lint && yarn run mocha",
"lint": "standard",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"dependencies": {
"@feathersjs/authentication": "^4.5.1",
"@feathersjs/authentication-local": "^4.5.1",
"@feathersjs/authentication-oauth": "^4.5.1",
"@feathersjs/configuration": "^4.5.1",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/express": "^4.5.1",
"@feathersjs/feathers": "^4.5.1",
"@feathersjs/primus": "^4.5.1",
"@feathersjs/transport-commons": "^4.5.3",
"@kidkarolis/not-so-fast": "^1.0.1",
"alexa-app": "^4.2.3",
"aws-sdk": "^2.725.0",
"axios": "^0.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"data-uri-to-buffer": "^3.0.1",
"dotenv": "^8.2.0",
"feathers-authentication-management": "^3.0.0",
"feathers-blob": "^2.2.0",
"feathers-errors": "^2.9.2",
"feathers-hooks-common": "^5.0.3",
"feathers-mongoose": "^8.3.0",
"feathers-permissions": "^2.0.2",
"figlet": "^1.4.0",
"helmet": "^3.21.2",
"html-pdf": "^2.2.0",
"intuit-oauth": "^3.0.1",
"mailgun-js": "^0.22.0",
"markdown-it": "^11.0.0",
"moment": "^2.27.0",
"mongodb-core": "^3.2.7",
"mongoose": "^5.8.13",
"node-pdfify-client": "^1.0.0",
"parse-address": "^1.1.2",
"pug": "^3.0.0",
"qrcode": "^1.4.4",
"s3": "^4.4.0",
"s3-blob-store": "^4.1.1",
"serve-favicon": "^2.5.0",
"twilio": "^3.48.1",
"uuid": "^8.2.0",
"winston": "^3.0.0",
"winston-console-format": "^1.0.5",
"winston-mongodb": "^5.0.1",
"ws": "^7.3.0"
},
"devDependencies": {
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"standard": "^14.3.4"
}
}