-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "superbatu",
"version": "0.0.4",
"description": "A Custom URL Shortener",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"test": "npx jest --config jestConfig.json --coverage --verbose --detectOpenHandles",
"build": "npx tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vijayrathore8492/superbatu.git"
},
"keywords": [
"url shortener",
"superbatu",
"custom url shortener"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vijayrathore8492/superbatu/issues"
},
"homepage": "https://github.com/vijayrathore8492/superbatu#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.4",
"pre-commit": "^1.2.2",
"prettier": "^2.3.1",
"sinon": "^11.1.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/express": "^4.17.12",
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"mongodb": "^3.6.9",
"nanoid": "^3.1.23"
}
}