-
Notifications
You must be signed in to change notification settings - Fork 0
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
31 additions
and
27 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "arches_rdm_example_project", | ||
"license": "AGPL-3.0-only", | ||
"scripts": { | ||
"build_development": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js", | ||
"build_production": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js", | ||
"build_test": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js --env test=true", | ||
"eslint:check": "eslint **/src", | ||
"eslint:fix": "eslint **/src --fix", | ||
"eslint:watch": "nodemon --watch . --ext ts,vue --exec npm run --silent eslint:check", | ||
"gettext:extract": "vue-gettext-extract", | ||
"gettext:compile": "vue-gettext-compile", | ||
"prettier:check": "prettier arches_rdm_example_project/src --check", | ||
"prettier:fix": "prettier arches_rdm_example_project/src --write", | ||
"ts:check": "vue-tsc --noEmit", | ||
"ts:watch": "vue-tsc --watch --noEmit", | ||
"start": "cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack serve --config ./webpack/webpack.config.dev.js", | ||
"vitest": "vitest --run --coverage" | ||
}, | ||
"devDependencies": { | ||
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#dev/7.6.x" | ||
}, | ||
"dependencies": { | ||
"arches": "archesproject/arches#dev/7.6.x", | ||
"arches_rdm": "archesproject/arches-rdm" | ||
}, | ||
"nodeModulesPaths": {}, | ||
"resolutions": { | ||
"node-gyp": "^10.0.0" | ||
} | ||
} |