forked from nornagon/saxi
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -22,14 +22,14 @@ | |
"prebuild": "npm run lint", | ||
"lint": "eslint --cache --ext .ts,.tsx src", | ||
"build": "npm run build:server && npm run build:ui", | ||
"build:server": "NODE_OPTIONS='--max-old-space-size=1024' tsc", | ||
"build:server": "cross-env NODE_OPTIONS='--max-old-space-size=1024' tsc", | ||
"build:ui": "node --experimental-modules build.mjs", | ||
"prepare": "rimraf dist && npm run build", | ||
"prestart": "npm run build", | ||
"start": "node cli.js", | ||
"serve": "npm run build:server && npm start", | ||
"dev": "npm run serve & BUILD_MODE=development npm run build:ui", | ||
"deploy": "rimraf dist/ui && IS_WEB=1 npm run build:ui && gh-pages --dist dist/ui", | ||
"dev": "npm run serve & cross-env BUILD_MODE=development npm run build:ui", | ||
"deploy": "rimraf dist/ui && cross-env IS_WEB=1 npm run build:ui && gh-pages --dist dist/ui", | ||
"test": "jest" | ||
}, | ||
"author": "Jeremy Rose <[email protected]>", | ||
|
@@ -68,6 +68,7 @@ | |
}, | ||
"dependencies": { | ||
"cors": "^2.8.5", | ||
"cross-env": "^7.0.3", | ||
"express": "^4.17.9", | ||
"flatten-svg": "^0.3.0", | ||
"optimize-paths": "^1.2.2", | ||
|