This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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": "backend-typescript-template",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w & nodemon",
"start": "node dist/main.js",
"start:dev": "npm run build && npm run watch",
"test-ci": "npm test",
"test:watch": "npm test -- --watchAll",
"test": "jest \"\\.spec\\.ts\"",
"test-integrations": "jest \"\\.integration\\.ts\" --forceExit",
"lint-check": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pocket/backend-typescript-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pocket/backend-typescript-template/issues"
},
"homepage": "https://github.com/Pocket/backend-typescript-template#readme",
"dependencies": {
"@apollo/federation": "0.36.1",
"@pocket-tools/apollo-utils": "2.3.2",
"@sentry/node": "7.7.0",
"@sentry/tracing": "7.7.0",
"apollo-datasource-rest": "3.6.1",
"apollo-server": "3.10.1",
"apollo-server-cache-redis": "3.3.1",
"apollo-server-express": "3.10.1",
"apollo-server-plugin-response-cache": "3.7.0",
"aws-xray-sdk-express": "3.3.8",
"dataloader": "2.1.0"
},
"devDependencies": {
"@pocket-tools/eslint-config": "2.0.0",
"@pocket-tools/tsconfig": "2.0.1",
"@types/chai": "4.3.3",
"@types/jest": "28.1.8",
"chai": "4.3.6",
"husky": "8.0.1",
"jest": "28.1.3",
"nock": "13.2.9",
"nodemon": "2.0.20",
"ts-jest": "28.0.8",
"ts-node": "10.9.1"
}
}