-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 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
34
35
36
37
38
{
"name": "url-shortner",
"version": "1.0.0",
"description": "\"URL shortner API\"",
"main": "index.js",
"scripts": {
"build": "npm run tsc",
"tsc": "tsc -p tsconfig.json",
"start": "node dist",
"dev": "tsc --watch & nodemon dist",
"test": "jest --runInBand --detectOpenHandles"
},
"author": "@nzrvg",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.1.4",
"@types/express": "^4.17.20",
"@types/shortid": "^0.0.31",
"axios": "^1.5.1",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mongoose": "^7.6.3",
"shortid": "^2.2.16"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/nodemon": "^1.19.4",
"@types/supertest": "^2.0.15",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}