firefish/package.json

70 lines
2.0 KiB
JSON
Raw Normal View History

2016-12-28 22:49:51 +00:00
{
2022-08-23 05:10:41 +00:00
"name": "calckey",
"version": "13.0.7-rc",
2022-08-07 05:07:10 +00:00
"codename": "aqua",
"repository": {
"type": "git",
2022-12-18 18:12:24 +00:00
"url": "https://codeberg.org/calckey/calckey.git"
},
2022-12-26 23:37:57 +00:00
"packageManager": "yarn@3.3.1",
2022-05-30 01:19:30 +00:00
"workspaces": [
2022-12-26 23:24:19 +00:00
"packages/*"
2022-05-30 01:19:30 +00:00
],
2017-11-06 10:16:14 +00:00
"private": true,
"scripts": {
2022-12-18 00:59:03 +00:00
"rebuild": "yarn clean && yarn workspaces foreach run build && yarn run gulp",
"build": "yarn workspaces foreach run build && yarn run gulp",
2022-06-04 08:01:02 +00:00
"start": "yarn workspace backend run start",
"start:test": "yarn workspace backend run start:test",
2022-06-03 13:39:07 +00:00
"init": "yarn migrate",
2022-06-04 08:01:02 +00:00
"migrate": "yarn workspace backend run migrate",
2022-12-12 03:24:12 +00:00
"revertmigration": "yarn workspace backend run revertmigration",
2022-06-03 13:39:07 +00:00
"migrateandstart": "yarn migrate && yarn start",
2021-11-12 01:24:19 +00:00
"gulp": "gulp build",
2022-06-03 13:39:07 +00:00
"watch": "yarn dev",
2022-12-26 23:24:19 +00:00
"dev": "yarn node ./scripts/dev.js",
2022-05-31 00:31:24 +00:00
"lint": "yarn workspaces foreach run lint",
2022-06-11 06:08:31 +00:00
"cy:open": "cypress open --browser --e2e --config-file=cypress.config.ts",
2021-08-12 10:05:07 +00:00
"cy:run": "cypress run",
2021-10-28 07:06:06 +00:00
"e2e": "start-server-and-test start:test http://localhost:61812 cy:run",
2022-06-04 08:01:02 +00:00
"mocha": "yarn workspace backend run mocha",
2022-06-03 13:39:07 +00:00
"test": "yarn mocha",
2021-11-12 02:42:47 +00:00
"format": "gulp format",
2022-12-26 23:24:19 +00:00
"clean": "yarn node ./scripts/clean.js",
"clean-all": "yarn node ./scripts/clean-all.js",
2022-06-03 13:39:07 +00:00
"cleanall": "yarn clean-all"
2017-11-06 10:16:14 +00:00
},
2022-07-05 05:17:37 +00:00
"resolutions": {
"chokidar": "^3.3.1",
"lodash": "^4.17.21"
2017-11-06 10:16:14 +00:00
},
"dependencies": {
2022-11-16 10:08:33 +00:00
"@bull-board/api": "^4.6.4",
"@bull-board/ui": "^4.6.4",
2022-10-27 21:25:31 +00:00
"@tensorflow/tfjs": "^3.21.0",
2023-01-03 17:12:26 +00:00
"calckey-js": "^0.0.20",
"eslint": "^8.31.0",
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",
2022-12-18 19:03:08 +00:00
"gulp-replace": "1.1.4",
2021-11-14 01:43:19 +00:00
"gulp-terser": "2.1.0",
2022-07-19 05:05:38 +00:00
"js-yaml": "4.1.0",
2022-11-04 20:20:18 +00:00
"long": "^5.2.1",
2022-11-22 04:01:27 +00:00
"phosphor-icons": "^1.4.2",
2022-08-16 02:07:24 +00:00
"seedrandom": "^3.0.5"
},
"devDependencies": {
2022-11-16 10:08:33 +00:00
"@types/gulp": "4.0.10",
"@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",
2022-10-27 21:25:31 +00:00
"cypress": "10.11.0",
2022-12-26 23:24:19 +00:00
"install-peers": "^1.0.4",
2022-12-18 19:03:08 +00:00
"start-server-and-test": "1.15.2",
"typescript": "4.9.4",
2022-10-27 21:25:31 +00:00
"vue-eslint-parser": "^9.1.0"
2017-11-06 10:16:14 +00:00
}
2018-06-11 02:44:26 +00:00
}