forked from dittowords/ditto-ce-connector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"name": "ce-connector-ditto",
"private": true,
"version": "1.0.0",
"description": "Ditto connector for Lokalise Content type app engine",
"main": "server.js",
"scripts": {
"copy:config": "cpy --rename=.env .env.default ./",
"build": "tsc",
"test": "jest --runInBand",
"test:coverage": "jest --coverage --runInBand",
"test:ci": "npm run copy:config && npm run lint && npm run test:coverage",
"lint": "eslint .",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write . !.pre.yml",
"start:dev": "cross-env NODE_ENV=development ts-node -r dotenv/config src/server.ts",
"start:dev:watch": "cross-env NODE_ENV=development ts-node-dev -r dotenv/config src/server.ts",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Lokalise",
"license": "Apache-2.0",
"dependencies": {
"@bugsnag/js": "^7.20.0",
"@fastify/awilix": "^3.0.2",
"@fastify/cors": "^8.3.0",
"@lokalise/fastify-extras": "^17.0.3",
"@lokalise/node-core": "^9.10.1",
"awilix": "^8.0.1",
"axios": "^1.1.3",
"dotenv": "^16.0.1",
"fastify": "^4.26.2",
"fastify-custom-healthcheck": "^3.1.0",
"fastify-graceful-shutdown": "^3.5.1",
"fastify-metrics": "^10.6.0",
"fastify-plugin": "^4.5.0",
"fastify-type-provider-zod": "^1.1.9",
"newrelic": "^11.23.2",
"pino": "^8.11.0",
"undici": "^6.19.8",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.16.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.5.0",
"mockttp": "^3.7.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
}
}