-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 2.04 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": "@kulkul/ngecilin",
"version": "1.1.3",
"description": "Chrome Extension to shorten your looooong URL",
"main": "index.js",
"repository": "[email protected]:kulkultech/ngecilin.git",
"author": "kulkultech",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && env VERSION=$(node -p \"require('./package.json').version\") npx webpack",
"dev": "webpack-dev-server",
"lint": "npx eslint --fix \"src/**/*.js\" && npx prettier --write \"src/**/*.{js,jsx,}\"",
"setup:key": "cp key/manifest.key.example key/manifest.key",
"setup:dotenv": "touch .env",
"dev:setup": "yarn setup:key && yarn setup:dotenv",
"gen:cert": "openssl genrsa 2048 | openssl pkcs8 -topk8 -nocrypt -out key/key.pem",
"gen:key": "openssl rsa -in key/key.pem -pubout -outform DER | openssl base64 -A",
"gen:id": "openssl rsa -in key/key.pem -pubout -outform DER | shasum -a 256 | head -c32 | tr 0-9a-f a-p"
},
"dependencies": {
"@kulkul/bitly-client": "^1.0.0",
"@kulkul/tinyurl-client": "^1.0.7",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"copy-webpack-plugin": "^6.2.0",
"css-loader": "^4.3.0",
"dotenv-webpack": "^3.0.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.1.1",
"handlebars": "^4.7.6",
"handlebars-loader": "^1.7.1",
"handlebars-webpack-plugin": "^2.1.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": "eslint --fix",
"functions/*.js": "eslint --fix",
"src/*.{js,json,html}": [
"prettier --write"
]
}
}