-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
38
39
40
41
42
43
44
45
46
47
{
"name": "short-url",
"version": "1.0.0",
"description": "short url service in Typescript",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch src --ignore src/test src/index.ts",
"build": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a179346/short-url.git"
},
"keywords": [
"shorturl",
"typescript",
"mongodb"
],
"author": "a179346",
"license": "MIT",
"bugs": {
"url": "https://github.com/a179346/short-url/issues"
},
"homepage": "https://github.com/a179346/short-url#readme",
"dependencies": {
"axios": "^0.25.0",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"mongodb": "^4.3.1",
"shortid": "^2.2.16",
"validax": "^1.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.32.0",
"nodemon": "^2.0.15",
"ts-node": "^10.2.1",
"typescript": "^4.5.5"
}
}