-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shorten-url",
"version": "1.0.0",
"description": "Shorten url tool for GDSC-DUT",
"main": "www.js",
"scripts": {
"start": "node src/backend/bin/www.js",
"dev": "nodemon src/backend/bin/www.js",
"lint": "eslint --fix --ext .js .",
"postinstall": "husky install"
},
"_moduleAliases": {
"@root": ".src/backend",
"@api": "./src/backend/api",
"@bin": "./src/backend/bin",
"@common": "./src/backend/common",
"@config": "./src/backend/config",
"@database": "./src/backend/database",
"@env": "./src/backend/env",
"@infrastructure": "./src/backend/infrastructure",
"@modules": "./src/backend/modules",
"@routes": "./src/backend/routes",
"@utils": "./src/backend/utils"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscdut/url.dscdut.com"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dscdut/url.dscdut.com/issues"
},
"homepage": "https://github.com/dscdut/url.dscdut.com#readme",
"dependencies": {
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.12",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"firebase-admin": "^9.10.0",
"geoip-lite": "^1.4.2",
"google-auth-library": "^7.9.2",
"http-status": "^1.5.0",
"ipaddr.js": "^2.0.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"module-alias": "^2.2.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"nodemon": "^2.0.6"
}
}