-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
89 lines (89 loc) · 2.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "miniurl",
"version": "0.0.1",
"type": "module",
"types": "src/types",
"description": "A url minifier",
"main": "index.ts",
"homepage": "https://github.com/miniservices/miniurl",
"repository": {
"type": "git",
"url": "git+https://github.com/miniservices/miniurl.git"
},
"bugs": {
"url": "https://github.com/miniservices/miniurl/issues"
},
"scripts": {
"start": "cross-env npm_package_type=module NODE_ENV=production node --loader ts-node/esm/transpile-only --experimental-specifier-resolution=node ./src/index.ts",
"dev": "env-cmd -f .env.development nodemon --watch \"src/**/*.ts\" --exec \"node --loader ts-node/esm --unhandled-rejections=strict --experimental-specifier-resolution=node --trace-warnings\" src/index.ts",
"lint": "tsc --noEmit && eslint **/*.ts",
"lint:fix": "npm run lint -- --fix",
"test": "cross-env npm_package_type=module node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:unit": "npm run test -- --testPathIgnorePatterns e2e",
"test:e2e": "npm run test -- e2e",
"test:coverage": "codecov"
},
"keywords": [
"url",
"minify",
"shortener",
"urly",
"urls",
"url-shortener",
"docker",
"kubernetes",
"helm",
"typescript",
"javascript"
],
"author": "Snir Shechter",
"license": "MIT",
"dependencies": {
"@types/ioredis": "^4.23.0",
"@types/micromatch": "^4.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^14.14.22",
"@types/pino": "^6.3.6",
"@types/redis": "^2.8.28",
"camelcase-keys": "^6.2.2",
"cross-env": "^7.0.3",
"crypto-random-string": "^3.3.0",
"fastify": "^3.10.1",
"fastify-error": "^0.3.0",
"ioredis": "^4.23.0",
"knex": "^0.21.17",
"micromatch": "^4.0.2",
"ms": "^2.1.3",
"pg": "^8.5.1",
"pino": "^6.11.1",
"snake-case": "^3.0.4",
"sqlite3": "^5.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.14.0",
"codecov": "^3.8.1",
"env-cmd": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.0.6",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.4",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "env FORCE_COLOR=true lint-staged && npm run test:unit"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix"
]
}
}