-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.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
50
51
52
53
54
55
{
"name": "milk-cookie-manager",
"version": "2.7.0",
"description": "Cookie's best friend! Modern cookie manager.",
"author": "Rafael Grigorian <rafael@grigorian.org>",
"license": "MIT",
"scripts": {
"preserve": "mkdir -p dist && cp -r static/* dist/",
"serve": "VERSION=$npm_package_version parcel serve --no-autoinstall --no-cache src/service-worker.jsx src/*.html",
"prebuild:chrome": "mkdir -p dist && cp -r static/* dist/ && jq -r 'del(.background.scripts,.browser_specific_settings)' static/manifest.json > dist/manifest.json",
"build:chrome": "VERSION=$npm_package_version parcel build --no-cache --no-source-maps src/service-worker.jsx src/*.html",
"package:chrome": "yarn clean && yarn build:chrome && web-ext build -s dist -a target",
"publish:chrome": "echo not supported yet",
"prebuild:firefox": "mkdir -p dist && cp -r static/* dist/ && jq -r 'del(.background.service_worker,.offline_enabled,.incognito)' static/manifest.json > dist/manifest.json",
"build:firefox": "VERSION=$npm_package_version parcel build --no-cache --no-source-maps src/service-worker.jsx src/*.html",
"package:firefox": "yarn clean && yarn build:firefox && web-ext build -s dist -a target",
"publish:firefox": "web-ext sign -s dist --channel=listed --api-key=$FIREFOX_API_KEY --api-secret=$FIREFOX_API_SECRET",
"clean": "rm -rf dist .parcel-cache target",
"nuke": "yarn clean && rm -rf node_modules",
"test": "yarn clean && yarn build:chrome && mocha spec",
"marketing": "yarn clean && yarn build:chrome && node tools/create-marketing.js"
},
"dependencies": {
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@material-ui/core": "^5.0.0-alpha.18",
"@material-ui/icons": "^5.0.0-alpha.23",
"bluebird": "^3.7.2",
"copy-to-clipboard": "^3.3.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-window": "^1.8.5",
"typeface-roboto": "^1.1.13",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"jimp": "^0.22.10",
"mocha": "^8.2.1",
"parcel": "^2.11.0",
"puppeteer": "^21.7.0",
"web-ext": "^7.10.0"
},
"alias": {
"contexts": "./src/contexts",
"components": "./src/components",
"data": "./src/data",
"icons": "./src/icons",
"source": "./src",
"utils": "./src/utils"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}