-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "cargo-dummy-integration",
"version": "0.0.1",
"description": "Dummy example on how to create an custom integration for Cargo",
"author": "Aurelien Aubert",
"repository": "getcargohq/dummy-integration",
"main": "index.ts",
"private": true,
"engines": {
"node": "20.x"
},
"volta": {
"node": "20.18.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "nodemon --exec \"ts-node ./index.ts\"",
"lint": "eslint ./ --fix --ext ts",
"lint:check": "eslint ./ --ext ts --max-warnings=0",
"type:check": "tsc --project tsconfig.json --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^8.0.0",
"jsonschema": "^1.4.1",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@swc/core": "^1.9.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"typescript": "^5.4.4",
"vitest": "^2.0.0"
}
}