forked from lokalise/ce-connector-template-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "ditto-ce-connector",
"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",
"test:coverage": "jest --coverage",
"test:ci": "npm run copy:config && npm run lint && npm run test:coverage",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"format": "prettier --write . && eslint . --fix",
"start:dev": "nodemon",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Lokalise",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.1.3",
"dotenv": "^16.0.1",
"fastify": "^4.5.3",
"fastify-plugin": "^4.2.1",
"fastify-type-provider-zod": "^1.1.5",
"pino": "^8.4.2",
"zod": "^3.19.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"cpy-cli": "^4.1.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"nodemon": "^2.0.16",
"pino-pretty": "^9.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "4.8.2"
},
"engines": {
"node": ">=18"
}
}