-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rafael Grigorian
committed
Dec 8, 2020
1 parent
76b3569
commit 091a755
Showing
105 changed files
with
6,365 additions
and
4,005 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
.DS_Store | ||
/.cache/ | ||
/.parcel-cache/ | ||
/public_html/ | ||
/dist/ | ||
/node_modules/ | ||
/public_html/ | ||
/target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "@parcel/config-default", | ||
"transformers": { | ||
"*.{json,svg}": ["@parcel/transformer-raw"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,39 @@ | ||
{ | ||
"name": "chrome-milk", | ||
"version": "1.0.3", | ||
"version": "2.0.0", | ||
"description": "Chrome extension that manages your browser's cookies", | ||
"main": "./src/index.jsx", | ||
"author": "Rafael Grigorian <[email protected]>", | ||
"author": "Rafael Grigorian <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "NODE_ENV=production parcel build src/index.html --no-cache --out-dir public_html", | ||
"serve": "NODE_ENV=development parcel serve src/index.html --no-cache --no-hmr --out-dir public_html", | ||
"clean": "rm -rf public_html dist", | ||
"zip": "mkdir dist && zip -r dist/chrome-milk.zip public_html/*", | ||
"prebuild": "mkdir -p dist && cp -r static/* dist/", | ||
"build": "NODE_ENV=production parcel build --no-cache --no-source-maps src/*.html", | ||
"preserve": "mkdir -p dist && cp -r static/* dist/", | ||
"serve": "NODE_ENV=development parcel serve --no-autoinstall --no-cache src/*.html", | ||
"clean": "rm -rf dist .cache .parcel-cache", | ||
"zip": "mkdir -p target && zip -r target/chrome-milk.zip dist/*", | ||
"release": "yarn clean && yarn build && yarn zip" | ||
}, | ||
"resolutions": { | ||
"**/**/set-value": "^2.0.1", | ||
"**/**/js-yaml": "^3.13.1", | ||
"**/**/static-eval": "^2.0.2", | ||
"**/**/serialize-to-js": "^3.0.1", | ||
"**/**/kind-of": "^6.0.3", | ||
"**/**/minimist": "^1.2.3", | ||
"**/**/acorn": "^6.4.1", | ||
"**/**/yargs-parser": "^13.1.2", | ||
"**/**/tar": "^4.4.2", | ||
"**/**/node-forge": "^0.10.0" | ||
}, | ||
"dependencies": { | ||
"@material-ui/core": "^4.11.0", | ||
"js-yaml": "^3.13.1", | ||
"parcel": "^1.12.4", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"static-eval": "^2.0.2" | ||
"@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.14", | ||
"copy-to-clipboard": "^3.3.1", | ||
"lodash": "^4.17.20", | ||
"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" | ||
}, | ||
"devDependencies": { | ||
"moment": "^2.27.0", | ||
"node-sass": "^4.14.1", | ||
"parcel-bundler": "^1.12.4", | ||
"parcel-plugin-static-files-copy": "^2.4.3" | ||
"parcel": "^2.0.0-nightly.466" | ||
}, | ||
"alias": { | ||
"asset": "./src/assets", | ||
"style": "./src/stylesheets", | ||
"atom": "./src/components/atoms", | ||
"molecule": "./src/components/molecules", | ||
"orginism": "./src/components/orginisms", | ||
"page": "./src/components/pages" | ||
"contexts": "./src/contexts", | ||
"components": "./src/components", | ||
"icons": "./src/icons", | ||
"utils": "./src/utils" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.