-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"private": true,
"name": "elfin",
"version": "0.0.0-development",
"description": "Super fast and simple URL shortener service using Cloudflare Workers.",
"main": "./src/index.js",
"scripts": {
"prepare": "husky install",
"pretest": "eslint ./src",
"test": "echo \"Error: no test specified\"",
"dev": "wrangler dev",
"publish-staging": "wrangler publish --env staging",
"publish-production": "npm run test && wrangler publish --env production"
},
"author": "eMAD <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"nanoid": "^3.1.25",
"nanoid-dictionary": "^4.3.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@cloudflare/wrangler": "^1.19.2",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@partumgmbh/eslint-config": "^2.0.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier-eslint": "^13.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}