-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Update Dependencies. Fix issues related to using with CRA (
#88)
- Loading branch information
1 parent
62646f9
commit 6f6e4b7
Showing
9 changed files
with
1,302 additions
and
1,086 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 +1,13 @@ | ||
{ | ||
"name": "svg-to-excalidraw", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Convert SVG to Excalidraw’s file format", | ||
"main": "dist/bundle.js", | ||
"files": [ | ||
"dist/bundle.js", | ||
"svg-to-excalidraw.d.ts" | ||
], | ||
"types": "svg-to-excalidraw.d.ts", | ||
"scripts": { | ||
"build": "yarn clean && webpack --config webpack.config.js", | ||
"build:watch": "yarn clean && webpack --config webpack.config.js --watch", | ||
|
@@ -16,50 +17,51 @@ | |
"fix:other": "yarn prettier -- --write", | ||
"lint:check": "eslint .", | ||
"lint:write": "eslint . --fix", | ||
"postinstall": "husky install", | ||
"prettier": "prettier \"**/*.{css,scss,json,md,html,yml}\" --ignore-path=.eslintignore", | ||
"test": "yarn test:typecheck && yarn test:code && yarn test:other", | ||
"test:code": "eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts,.tsx .", | ||
"test:other": "yarn prettier -- --list-different", | ||
"test:typecheck": "tsc" | ||
}, | ||
"prettier": "@excalidraw/prettier-config", | ||
"author": "Nicolas Goudry <[email protected]>", | ||
"contributors": [ | ||
"Nicolas Goudry <[email protected]>", | ||
"Broch Stilley <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/core": "7.13.10", | ||
"@babel/plugin-proposal-class-properties": "7.13.0", | ||
"@babel/plugin-proposal-object-rest-spread": "7.13.8", | ||
"@babel/core": "7.15.5", | ||
"@babel/plugin-proposal-class-properties": "7.14.5", | ||
"@babel/plugin-proposal-object-rest-spread": "7.14.7", | ||
"@babel/plugin-syntax-dynamic-import": "7.8.3", | ||
"@babel/preset-env": "7.13.15", | ||
"@babel/preset-typescript": "7.13.0", | ||
"@babel/preset-env": "7.15.4", | ||
"@babel/preset-typescript": "7.15.0", | ||
"@excalidraw/eslint-config": "1.0.1", | ||
"@excalidraw/prettier-config": "1.0.2", | ||
"@types/chroma-js": "^2.1.3", | ||
"@typescript-eslint/eslint-plugin": "4.19.0", | ||
"@typescript-eslint/parser": "4.18.0", | ||
"@typescript-eslint/eslint-plugin": "4.31.0", | ||
"@typescript-eslint/parser": "4.31.0", | ||
"babel-loader": "^8.2.2", | ||
"eslint": "7.24.0", | ||
"eslint-config-prettier": "8.1.0", | ||
"eslint-plugin-prettier": "3.3.1", | ||
"husky": "5.1.3", | ||
"lint-staged": "10.5.4", | ||
"prettier": "2.2.1", | ||
"typescript": "4.2.3", | ||
"webpack": "5.27.1", | ||
"webpack-cli": "4.6.0" | ||
"eslint": "7.32.0", | ||
"eslint-config-prettier": "8.3.0", | ||
"eslint-plugin-prettier": "4.0.0", | ||
"lint-staged": "11.1.2", | ||
"prettier": "2.3.2", | ||
"typescript": "4.4.2", | ||
"webpack": "5.52.0", | ||
"webpack-cli": "4.8.0" | ||
}, | ||
"lint-staged": { | ||
"*.js": "eslint --cache --fix", | ||
"*.{js,css,md}": "prettier --write" | ||
}, | ||
"dependencies": { | ||
"chroma-js": "^2.1.1", | ||
"chroma-js": "^2.1.2", | ||
"gl-matrix": "^3.3.0", | ||
"nanoid": "^3.1.22", | ||
"nanoid": "^3.1.25", | ||
"path-data-parser": "^0.1.0", | ||
"points-on-curve": "^0.2.0", | ||
"points-on-path": "^0.2.1", | ||
"roughjs": "^4.3.1" | ||
"roughjs": "^4.4.1" | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.