-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "firefox-android-home-recommendations",
"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": "jest \"\\.spec\\.ts\"",
"test-integrations": "jest \"\\.integration\\.ts\" --runInBand",
"lint-check": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\""
},
"dependencies": {
"@apollo/client": "^3.6.4",
"@pocket-tools/ts-logger": "^1.2.4",
"@sentry/node": "7.59.2",
"@sentry/tracing": "7.59.2",
"aws-sdk": "2.1417.0",
"cross-fetch": "4.0.0",
"express": "4.18.2",
"graphql": "^16.4.0",
"graphql-tag": "2.12.6"
},
"devDependencies": {
"@pocket-tools/eslint-config": "2.1.7",
"@types/jest": "29.5.3",
"@types/node": "18.16.19",
"@types/react": "18.2.15",
"jest": "29.6.1",
"nodemon": "3.0.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}