-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "express-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist --extensions \".ts\"",
"start": "node dist/index.js",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/sequelize": "^4.28.20",
"@types/supertest": "^6.0.2",
"babel-plugin-module-resolver": "^5.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.2",
"pg": "^8.13.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.6",
"tsconfig-paths": "^4.2.0",
"zod": "^3.24.2"
}
}