-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 953 Bytes
/
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
{
"name": "url-shortener",
"version": "1.0.0",
"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.mjs",
"module": "src/index.mjs",
"type": "module",
"scripts": {
"dev": "nodemon src/index.mjs",
"dev:native": "node --watch src/index.mjs",
"format": "prettier --write .",
"format:check": "prettier --list-different .",
"start": "node src/index.mjs",
"test": "DEBUG=testcontainers* node --experimental-vm-modules $(yarn bin jest) --runInBand"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.6.2",
"nanoid": "^5.0.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testcontainers/mongodb": "^10.2.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3"
}
}