forked from single-spa/single-spa-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.27 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
{
"name": "single-spa-inspector",
"version": "0.5.0",
"description": "A devtools extension for single-spa applications",
"scripts": {
"prebuild": "npm run webpack-build && npm run lint",
"build": "web-ext build",
"lint": "web-ext lint",
"start": "concurrently --kill-others-on-fail -s \"first\" --names \"EXT,WPK\" -c \"cyan,magenta\" \"npm:start:firefox\" \"webpack --watch\"",
"start:firefox": "web-ext run --keep-profile-changes --firefox-profile=single-spa-inspector-dev",
"start:firefoxdev": "npm run start:firefox -- --firefox=firefoxdeveloperedition",
"start:chrome": "concurrently --kill-others-on-fail -s \"first\" --names \"EXT,WPK\" -c \"cyan,magenta\" \"npm:start:chrome-profile\" \"webpack --watch\"",
"start:chrome-profile": "web-ext run --target chromium --chromium-profile \"$CHROME_PROFILE_PATH\"",
"self-sign": "npm run webpack-build && npm run lint && web-ext sign",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-build": "webpack --mode=production",
"deploy": "npm run deploy:firefox && npm run deploy:chrome",
"deploy:firefox": "npm run prebuild && shipit firefox .",
"deploy:chrome": "npm run build -- --overwrite-dest && shipit chrome web-ext-artifacts/single-spa_inspector-$npm_package_version.zip",
"format": "prettier src/ --write",
"prepare": "husky install"
},
"keywords": [
"single-spa",
"microservice",
"javascript",
"extension",
"devtools"
],
"author": "Anthony Frehner",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@wext/shipit": "^0.2.1",
"babel-loader": "^8.2.2",
"concurrently": "^6.3.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.3.0",
"husky": "^7.0.0",
"lodash-es": "^4.17.21",
"prettier": "2.4.1",
"pretty-quick": "^3.1.1",
"style-loader": "^3.3.0",
"web-ext": "^6.4.0",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@reach/tabs": "^0.16.1",
"fuse.js": "^6.4.6",
"kremling": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webextension-polyfill": "^0.8.0"
},
"browserslist": [
"last 5 chrome version",
"last 5 firefox version"
]
}