-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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": "api-service",
"version": "1.0.0",
"private": true,
"main": "build/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node ./src/index.ts",
"dev:watch": "cross-env NODE_ENV=development nodemon ./src/index.ts",
"build:prod": "tsc -p ./tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .tsx,.ts,.js",
"lint:fix": "eslint . --ext .tsx,.ts,.js --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@moonstar-x/logger": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"glob": "^11.0.0",
"http-status-codes": "^2.3.0",
"neo4j-driver": "4.4",
"on-finished": "^2.4.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@moonstar-x/eslint-config": "^1.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"@types/on-finished": "^2.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}