-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.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
{
"analyze": true,
"author": "NYPL Digital",
"dependencies": {
"@aws-sdk/client-kms": "^3.533.0",
"@elastic/elasticsearch": "~8.12.0",
"@nypl/nypl-core-objects": "2.3.2",
"@nypl/nypl-data-api-client": "^2.0.0",
"@nypl/scsb-rest-client": "3.0.0",
"research-catalog-indexer": "git+https://github.com/NYPL/research-catalog-indexer.git",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"winston": "3.12.0"
},
"devDependencies": {
"@aws-sdk/credential-providers": "^3.614.0",
"axios": "^0.27.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"csv-parse": "^5.5.6",
"git-diff": "^2.0.6",
"md5": "^2.2.1",
"minimist": "^1.2.5",
"mocha": "^10.7.3",
"qs": "^6.5.1",
"request-promise": "^4.1.1",
"should": "^7.0.2",
"sinon": "^17.0.1",
"standard": "^17.0.1",
"supertest": "^7.0.0",
"table": "^6.8.2",
"yaml": "^2.6.0"
},
"scripts": {
"test": "./node_modules/.bin/standard --env mocha && NODE_ENV=test ./node_modules/.bin/mocha test --exit",
"start": "node server.js",
"deploy-development": "git checkout development && git pull origin development && eb deploy discovery-api-dev --profile nypl-sandbox",
"deploy-qa": "git checkout qa && git pull origin qa && eb deploy discovery-api-qa --profile nypl-digital-dev",
"deploy-production": "git checkout production && git pull origin qa && eb deploy discovery-api-production --profile nypl-digital-dev",
"rebuild-annotated-marc-rules": "./scripts/update-annotated-marc-rules.js --refetch"
},
"description": "Discovery API as an AWS Lambda.",
"license": "MIT",
"name": "discovery-api",
"preferGlobal": false,
"private": false,
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"expect",
"it"
],
"ignore": [
"/logs-to-tsv/*"
]
},
"version": "1.1.4",
"repository": {
"type": "git",
"url": "https://github.com/NYPL/discovery-api.git"
}
}