-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
90 lines (90 loc) · 3.39 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
90
{
"name": "page-modeller",
"version": "2.5.1",
"description": "A browser extension for modelling web pages for automation",
"author": "Dan Humphrey - [email protected]",
"homepage": "https://github.com/danhumphrey/page-modeller",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"clean": "rimraf build && rimraf build-firefox",
"build": "npm run clean && cross-env NODE_ENV=production webpack --mode=production",
"build:dev": "npm run clean && cross-env NODE_ENV=development webpack --mode=development",
"zip:chrome": "node scripts/build-chrome.js",
"zip:firefox": "web-ext build -s build-firefox -a release-firefox --overwrite-dest",
"manifest:firefox": "cp -a build build-firefox && cd scripts && node firefox-manifest.js",
"sign:firefox": "source .appenv && npm run manifest:firefox && web-ext sign --api-key $AMO_KEY --api-secret $AMO_SECRET -s build-firefox -a release-firefox",
"zip": "npm run zip:chrome && npm run zip:firefox",
"watch": "npm run build -- --watch",
"watch:dev": "npm run build:dev -- --watch",
"launch:chrome": "cross-env LAUNCH_CHROME=true HMR=true npm run watch:dev",
"launch:firefox": "cross-env LAUNCH_FIREFOX=true npm run watch:dev",
"version": "cd scripts && node release.js && cd ./",
"release": "npm run version && npm run build && npm run zip:chrome && npm run sign:firefox",
"pretty-quick": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danhumphrey/page-modeller.git"
},
"dependencies": {
"@mdi/js": "^7.0.96",
"babel-plugin-rewire": "^1.2.0",
"caniuse-lite": "^1.0.30001638",
"lodash": "^4.17.20",
"scroll-into-view-if-needed": "^2.2.26",
"simmerjs": "^0.5.6",
"vue": "2.6.14",
"vuelidate": "^0.7.6",
"vuetify": "2.6.10"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.24.7",
"@types/chrome": "^0.0.268",
"archiver": "^5.3.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"chrome-launch": "^1.1.4",
"copy-webpack-plugin": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.13.0",
"file-loader": "^6.2.0",
"husky": "^9.0.1",
"inquirer": "^8.1.2",
"jest": "^26.6.3",
"json-schema": ">=0.4.0",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"semver": "^7.3.4",
"terser-webpack-plugin": "^5.1.4",
"trim-newlines": ">=3.0.1",
"vue-loader": "15.9.8",
"vue-template-compiler": "2.6.14",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-shell-plugin-next": "^2.1.1"
}
}