-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.75 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
{
"name": "@cuppazee/browse",
"displayName": "CuppaZee Browse",
"version": "0.0.7",
"description": "CuppaZee Browse",
"private": true,
"scripts": {
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts",
"dev:web": "vite",
"dev:js": "npm run build:js -- --mode development",
"build_v2": "cross-env NODE_ENV=production run-s clear build:web build:prepare_v2 build:js build:safari",
"build_v3": "cross-env NODE_ENV=production run-s clear build:web build:prepare_v3 build:js build:safari",
"build:prepare_v2": "esno scripts/prepare.ts",
"build:prepare_v3": "esno scripts/prepare.ts --v3",
"build:web": "vite build",
"build:js": "vite build --config vite.config.content.ts",
"build:safari": "cp -r extension/* \"safari/Shared (Extension)/Resources\"",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf extension.zip && jszip-cli add extension -o ./extension.zip",
"pack:crx": "crx pack extension -o ./extension.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./extension --filename extension.xpi --overwrite-dest",
"start:chromium": "web-ext run --source-dir ./extension --target=chromium",
"start:firefox": "web-ext run --source-dir ./extension --target=firefox-desktop --firefox=firefoxdeveloperedition",
"clear": "rimraf extension/dist extension/manifest.json extension.*",
"lint": "eslint 'src/**/*.{json,ts,js,tsx,jsx}'"
},
"devDependencies": {
"@ffflorian/jszip-cli": "^3.1.5",
"@iconify/json": "^1.1.398",
"@svgr/core": "^5.5.0",
"@types/fs-extra": "^9.0.12",
"@types/latlon-geohash": "^2.0.0",
"@types/node": "^16.7.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/use-persisted-state": "^0.3.0",
"@types/webextension-polyfill": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"chokidar": "^3.5.2",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
"eslint": "^7.32.0",
"esno": "^0.9.1",
"fs-extra": "^10.0.0",
"kolorist": "^1.5.0",
"npm-run-all": "^4.1.5",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-use-storage": "^0.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.2",
"unplugin-icons": "^0.7.6",
"use-persisted-state": "^0.3.3",
"vite": "^2.5.4",
"vite-plugin-windicss": "^1.4.3",
"web-ext": "^6.3.0",
"webext-bridge": "^5.0.0",
"webextension-polyfill": "^0.8.0",
"windicss": "^3.1.7"
},
"dependencies": {
"@cuppazee/api": "^0.0.13",
"@cuppazee/db": "^0.0.8",
"dayjs": "^1.10.7",
"latlon-geohash": "^2.0.0",
"mapbox-gl": "^2.4.1",
"react-map-gl": "^6.1.17",
"react-query": "^3.25.1",
"url-pattern": "^1.0.3"
}
}