-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "short-url",
"version": "1.0.0",
"description": "URL shortener",
"license": "MIT",
"author": "Nil Késede",
"scripts": {
"lint": "eslint .",
"test": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --detectOpenHandles",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch --detectOpenHandles",
"prepare": "husky install"
},
"dependencies": {
"dayjs": "^1.10.4",
"mongoose": "^5.12.10",
"mongoose-type-url": "^2.1.0",
"nanoid": "^3.1.23",
"nanoid-dictionary": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"express-request-mock": "^3.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"mockdate": "^3.0.5",
"mongodb-memory-server": "^6.9.6",
"prettier": "^2.3.0"
},
"private": true
}