-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 KB
/
package.json
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
{
"name": "url-shortener",
"version": "1.0.0",
"packageManager": "pnpm@9.15.3",
"description": "An example of a URL shortening service",
"author": "Anthony Hastings <ar.hastings@gmail.com> (https://antwan1986.github.io/)",
"license": "MIT",
"private": true,
"main": "src/index.ts",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "node --experimental-strip-types --experimental-transform-types --watch src/index.ts",
"format": "prettier --write .",
"format:check": "prettier --list-different .",
"start": "node --experimental-strip-types --experimental-transform-types src/index.ts",
"test": "DEBUG=testcontainers,testcontainers:exec vitest",
"types:check": "tsc --noEmit --project ./tsconfig.json"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^8.9.4",
"nanoid": "^5.0.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testcontainers/mongodb": "^10.16.0",
"@types/supertest": "^6.0.2",
"@types/express": "^4.17.21",
"@types/node": "^22.10.5",
"prettier": "^3.0.3",
"supertest": "^7.0.0",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}