-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.51 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
108
109
110
111
112
113
114
115
{
"name": "tgp-api",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"@aws-sdk/client-location": "^3.632.0",
"@aws-sdk/client-s3": "^3.633.0",
"@aws-sdk/client-sqs": "^3.632.0",
"@aws-sdk/s3-request-presigner": "^3.637.0",
"@contentful/rich-text-plain-text-renderer": "^15.12.1",
"@google-cloud/recaptcha-enterprise": "^5.6.0",
"@googlemaps/google-maps-services-js": "^3.3.42",
"@hubspot/api-client": "^8.9.0",
"@langchain/anthropic": "^0.3.3",
"@langchain/community": "^0.3.4",
"@langchain/core": "^0.2.34",
"@mailchimp/mailchimp_marketing": "^3.0.15",
"@mapbox/mapbox-sdk": "^0.15.5",
"@pinecone-database/pinecone": "^1.1.2",
"@sailshq/lodash": "^3.10.3",
"@tyriar/binary-heap": "^1.0.5",
"async": "^3.2.5",
"axios": ">=1.7.4",
"cheerio": "^1.0.0-rc.12",
"contentful": "^9.3.7",
"cross-env": "^7.0.2",
"csv-parser": "3.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.5",
"eslint": "^8.31.0",
"fast-csv": "^4.3.6",
"fs": "^0.0.1-security",
"global": "^4.4.0",
"google-auth-library": "^8.9.0",
"google-gax": "^4.3.2",
"googleapis": "^126.0.1",
"gpt-3-encoder": "^1.1.4",
"gpt-tokenizer": "^2.1.1",
"graphql": "^16.8.1",
"graphql-request": "^4.3.0",
"ini": ">=1.3.6",
"isomorphic-fetch": "^3.0.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.0",
"knex": ">=0.19.5",
"lmdb": "^2.8.5",
"lodash": "4.17.21",
"lodash.merge": ">=4.6.2",
"mailgun.js": "^10.2.3",
"md5": "^2.3.0",
"moment": "^2.29.1",
"ngeohash": "^0.6.3",
"node-fetch": ">=2.6.7",
"node-forge": "^1.2.1",
"nodemon": "^2.0.15",
"openai": "^4.69.0",
"peopledatalabs": "^7.0.5",
"pg": "^8.11.5",
"pg-connection-string": "^2.6.2",
"pg-copy-streams": "^6.0.6",
"puppeteer": "^19.11.1",
"randomatic": "^3.1.1",
"reading-time": "^1.5.0",
"remove.bg": "^1.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sails": "^1.5.11",
"sails-hook-organics": "^1.0.0",
"sails-hook-orm": "^2.1.1",
"sails-hook-sockets": "^2.0.3",
"sails-postgresql": "^5.0.1",
"sanitize-html": "^2.13.0",
"skipper": "^0.9.4",
"skipper-s3": "^0.6.0",
"slugify": "^1.6.6",
"sqs-consumer": "^11.0.2",
"stripe": "^15.8.0",
"time-ago": "^0.2.1",
"twilio": "^5.2.2",
"twitter-lite": "1.1.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3",
"dot-prop": ">=4.2.1",
"eslint-config-universe": "^11.1.1",
"prettier": "^2.8.2"
},
"scripts": {
"start": "cross-env NODE_ENV=production node app.js",
"dev": "cross-env NODE_ENV=development nodemon app.js",
"qa": "cross-env NODE_ENV=qa nodemon app.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"lint-fix": "eslint --fix",
"format": "prettier -c .",
"format-fix": "prettier --write .",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"deploy-dev": "git checkout develop && eb deploy",
"deploy-qa": "git checkout qa && eb deploy",
"deploy-prod": "git checkout master && eb deploy"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/thegoodparty/tgp-api"
},
"author": "Tomer Almog",
"license": "CC0-1.0",
"engines": {
"node": ">= 18"
}
}