-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 858 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 858 Bytes
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
{
"name": "evently-api",
"version": "1.0.0",
"description": "Event ticketing and booking REST API built with Node.js, Express, and TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest --coverage --forceExit",
"lint": "eslint src/ --ext .ts"
},
"dependencies": {
"express": "^4.18.2",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"@types/node": "^20.11.5",
"@types/express": "^4.17.21"
},
"devDependencies": {
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"@typescript-eslint/parser": "^6.19.1",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"supertest": "^6.3.4",
"@types/supertest": "^6.0.2",
"node-mocks-http": "^1.15.0"
}
}