-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.83 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
{
"name": "curation-tools-data-sync",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test-ci": "npm test",
"test:watch": "npm test -- --watchAll",
"test-spec": "jest \"\\.spec\\.ts\"",
"test-functional": "jest \"\\.functional\\.ts\" --runInBand",
"test-integration": "jest \"\\.integration\\.ts\" --runInBand",
"test-all": "npm run test-spec && npm run test-integration",
"postinstall": "(cd bin && npm install); (cd curation-authors-backfill && npm install); (cd curation-migration-backfill && npm install); (cd curation-migration-datasync && npm install)",
"lint-check": "eslint \"**/*.ts\"",
"lint-fix": "eslint --fix \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pocket/curation-tools-data-sync.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pocket/curation-tools-data-sync/issues"
},
"homepage": "https://github.com/Pocketcuration-tools-data-sync#readme",
"dependencies": {
"@pocket-tools/apollo-utils": "^3.4.2",
"@sentry/node": "^7.80.1",
"@sentry/tracing": "^7.80.1"
},
"devDependencies": {
"@pocket-tools/eslint-config": "^2.1.7",
"@types/aws-lambda": "^8.10.126",
"@types/chai": "^4.3.10",
"@types/chai-as-promised": "^7.1.8",
"@types/jest": "^29.5.8",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"nock": "^13.3.8",
"prettier": "^3.1.0",
"sinon": "^17.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}