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