Francis Dinh
83373e0c51
Some checks failed
ci/woodpecker/pr/lint-backend Pipeline failed
ci/woodpecker/pr/lint-foundkey-js Pipeline was successful
ci/woodpecker/pr/lint-client Pipeline failed
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/lint-sw Pipeline failed
ci/woodpecker/pr/test Pipeline failed
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-sw Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
This allows FoundKey to be built on systems with 2GB or less RAM without swapping or running out of memory.
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "foundkey",
|
|
"version": "13.0.0-preview3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://akkoma.dev/FoundKeyGang/FoundKey.git"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn workspaces foreach --topological run build && yarn run gulp",
|
|
"build-parallel": "yarn workspaces foreach --parallel --topological run build && yarn run gulp",
|
|
"start": "yarn workspace backend run start",
|
|
"start:test": "yarn workspace backend run start:test",
|
|
"init": "yarn migrate",
|
|
"migrate": "yarn workspace backend run migrate",
|
|
"migrateandstart": "yarn migrate && yarn start",
|
|
"gulp": "gulp build",
|
|
"watch": "yarn dev",
|
|
"dev": "node ./scripts/dev.mjs",
|
|
"lint": "yarn workspaces foreach run lint",
|
|
"cy:open": "cypress open --browser --e2e --config-file=cypress.config.ts",
|
|
"cy:run": "cypress run",
|
|
"e2e": "start-server-and-test start:test http://localhost:61812 cy:run",
|
|
"mocha": "yarn workspace backend run mocha",
|
|
"test": "yarn mocha",
|
|
"format": "gulp format",
|
|
"clean": "node ./scripts/clean.mjs",
|
|
"clean-all": "node ./scripts/clean-all.mjs",
|
|
"cleanall": "yarn clean-all"
|
|
},
|
|
"resolutions": {
|
|
"chokidar": "^3.3.1",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"dependencies": {
|
|
"argon2": "^0.30.2",
|
|
"execa": "5.1.1",
|
|
"gulp": "4.0.2",
|
|
"gulp-cssnano": "2.1.3",
|
|
"gulp-rename": "2.0.0",
|
|
"gulp-replace": "1.1.3",
|
|
"gulp-terser": "2.1.0",
|
|
"js-yaml": "4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/gulp": "4.0.9",
|
|
"@types/gulp-rename": "2.0.1",
|
|
"@typescript-eslint/parser": "^5.46.1",
|
|
"cross-env": "7.0.3",
|
|
"cypress": "10.3.0",
|
|
"start-server-and-test": "1.14.0",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"packageManager": "yarn@3.3.0"
|
|
}
|