FoundKey/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2016-12-28 22:49:51 +00:00
{
"name": "foundkey",
2023-07-02 09:13:19 +00:00
"version": "13.0.0-preview6",
"repository": {
"type": "git",
"url": "https://akkoma.dev/FoundKeyGang/FoundKey.git"
},
2017-11-06 10:16:14 +00:00
"private": true,
2022-08-26 19:24:29 +00:00
"workspaces": [
"packages/*"
],
2017-11-06 10:16:14 +00:00
"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",
"init": "yarn migrate",
"migrate": "yarn workspace backend run migrate",
"migrateandstart": "yarn migrate && yarn start",
2021-11-12 01:24:19 +00:00
"gulp": "gulp build",
"watch": "yarn dev",
"dev": "node ./scripts/dev.mjs",
2022-08-26 19:24:29 +00:00
"lint": "yarn workspaces foreach run lint",
2021-11-12 02:42:47 +00:00
"format": "gulp format",
"clean": "node ./scripts/clean.mjs",
"clean-all": "node ./scripts/clean-all.mjs",
"cleanall": "yarn clean-all"
2017-11-06 10:16:14 +00:00
},
"resolutions": {
"chokidar": "^3.3.1",
"lodash": "^4.17.21"
},
"dependencies": {
2021-11-12 01:24:19 +00:00
"execa": "5.1.1",
2019-05-14 12:17:29 +00:00
"gulp": "4.0.2",
2020-12-26 01:01:32 +00:00
"gulp-cssnano": "2.1.3",
2019-12-19 19:46:28 +00:00
"gulp-rename": "2.0.0",
2021-05-20 03:27:50 +00:00
"gulp-replace": "1.1.3",
2021-11-14 01:43:19 +00:00
"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",
2021-08-12 10:05:07 +00:00
"cross-env": "7.0.3",
"typescript": "^4.9.4"
2022-08-26 19:24:29 +00:00
},
2023-02-27 18:00:22 +00:00
"packageManager": "yarn@3.4.1"
2018-06-11 02:44:26 +00:00
}