iceshrimp-legacy/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2016-12-28 23:49:51 +01:00
{
2017-11-06 11:16:14 +01:00
"name": "misskey",
2022-07-19 06:12:10 +02:00
"version": "12.117.1-calc",
"codename": "indigo",
"repository": {
"type": "git",
2022-07-19 04:00:45 +02:00
"url": "https://codeberg.org/thatonecalculator/calckey.git"
},
2022-05-31 09:13:41 +02:00
"packageManager": "yarn@3.2.1",
2022-05-30 03:19:30 +02:00
"workspaces": [
2022-06-01 04:51:54 +02:00
"packages/client",
"packages/backend",
"packages/sw"
2022-05-30 03:19:30 +02:00
],
2017-11-06 11:16:14 +01:00
"private": true,
"scripts": {
"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-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",
2021-11-19 06:48:59 +01:00
"dev": "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",
2021-11-13 05:01:22 +01:00
"clean": "node ./scripts/clean.js",
2021-11-13 09:02:22 +01:00
"clean-all": "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
},
"dependencies": {
2022-05-30 03:42:19 +02:00
"eslint": "^8.16.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",
2021-05-20 05:27:50 +02:00
"gulp-replace": "1.1.3",
2021-11-14 02:43:19 +01:00
"gulp-terser": "2.1.0",
"js-yaml": "4.1.0"
},
"devDependencies": {
"@types/gulp": "4.0.9",
"@types/gulp-rename": "2.0.1",
2022-07-13 14:37:48 +02:00
"@typescript-eslint/parser": "5.30.6",
2022-05-31 09:16:01 +02:00
"@typescript-eslint/eslint-plugin": "latest",
2021-08-12 12:05:07 +02:00
"cross-env": "7.0.3",
2022-06-30 17:21:25 +02:00
"cypress": "10.3.0",
2022-05-31 02:31:24 +02:00
"eslint-plugin-import": "^2.26.0",
2022-05-31 09:16:01 +02:00
"eslint-plugin-vue": "latest",
"start-server-and-test": "1.14.0",
"typescript": "4.7.4",
2022-05-31 09:16:01 +02:00
"vue-eslint-parser": "^9.0.2"
2017-11-06 11:16:14 +01:00
}
2018-06-11 04:44:26 +02:00
}