-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "typescript-api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"start": "node dist/src/server.js",
"dev": "ts-node-dev src/server.ts",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"test": "jest --runInBand",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardofranca1/typescript-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eduardofranca1/typescript-api/issues"
},
"homepage": "https://github.com/eduardofranca1/typescript-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"moment": "^2.30.1",
"mongodb": "^6.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.14",
"@types/node": "^17.0.17",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.5.5",
"typescript-eslint": "^8.29.0"
}
}