-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "locations_api",
"version": "2.0.0",
"description": "Tanzania Locations API is a gateway that provides information about various locations in Tanzania, including regions, districts, wards, and places.",
"main": "./dist/server.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "node --experimental-strip-types --watch ./server.ts",
"generate": "prisma generate --no-engine",
"generate:ci": "prisma generate",
"build:ci": "npm run generate:ci && tsc --noEmit",
"build": "npm run generate && tsc",
"start": "node ./dist/server.js",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"Tanzania",
"locations",
"API",
"regions",
"districts",
"wards",
"places"
],
"author": "HackEAC",
"license": "copyleft",
"packageManager": "pnpm@10.7.0",
"dependencies": {
"@prisma/client": "^6.6.0",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.14.0",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"jest": "^29.7.0",
"prisma": "^6.6.0",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.3"
}
}