-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
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
{
"name": "navigate-me",
"version": "1.0.0",
"description": "A chrome extension to access your recently visited web pages within a website",
"main": "tailwind.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/archeun/my-navigator.git"
},
"keywords": [
"chrome",
"chrome-extension",
"archeun"
],
"author": "Aruna Tebel",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/archeun/my-navigator/issues"
},
"homepage": "https://github.com/archeun/my-navigator#readme",
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"pack": "node pack.js",
"repack": "npm run build && npm run pack",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\""
},
"dependencies": {
"moment": "^2.29.4",
"mustache": "^4.2.0"
},
"devDependencies": {
"adm-zip": "^0.5.10",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.8.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.3.0",
"prettier": "^2.8.8",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.6",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}