FoundKey/package.json

54 lines
1.8 KiB
JSON
Raw Normal View History

2016-12-28 22:49:51 +00:00
{
2017-11-06 10:16:14 +00:00
"name": "misskey",
2021-11-13 08:08:04 +00:00
"version": "12.96.1",
"codename": "indigo",
"repository": {
"type": "git",
2021-03-24 03:23:05 +00:00
"url": "https://github.com/misskey-dev/misskey.git"
},
2017-11-06 10:16:14 +00:00
"private": true,
"scripts": {
2021-11-12 01:24:19 +00:00
"postinstall": "node ./scripts/install-packages.js",
"build": "node ./scripts/build.js",
2021-11-11 17:02:25 +00:00
"start": "cd packages/backend && node --experimental-json-modules ./built/index.js",
2021-11-12 03:58:11 +00:00
"start:test": "cd packages/backend && cross-env NODE_ENV=test node --experimental-json-modules ./built/index.js",
2019-06-29 14:12:00 +00:00
"init": "npm run migrate",
2021-11-11 17:02:25 +00:00
"ormconfig": "node ./packages/backend/ormconfig.js",
"migrate": "cd packages/backend && npx typeorm migration:run",
"migrateandstart": "npm run migrate && npm run start",
2021-11-12 01:24:19 +00:00
"gulp": "gulp build",
"watch": "concurrently \"npm:watch-*\"",
"watch-webpack": "webpack --watch",
2021-11-11 17:02:25 +00:00
"watch-ts": "tsc -w -p packages/tsconfig.json && tsc-alias -w -p packages/tsconfig.json",
2021-03-12 15:40:35 +00:00
"watch-gulp": "gulp watch",
2021-11-12 01:35:41 +00:00
"lint": "node ./scripts/lint.js",
2021-08-12 10:05:07 +00:00
"cy:open": "cypress open",
"cy:run": "cypress run",
2021-10-28 07:06:06 +00:00
"e2e": "start-server-and-test start:test http://localhost:61812 cy:run",
2021-11-12 03:07:37 +00:00
"mocha": "cd packages/backend && cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" npx mocha",
2021-10-27 16:16:13 +00:00
"test": "npm run mocha",
2021-11-12 02:42:47 +00:00
"format": "gulp format",
2021-11-13 04:01:22 +00:00
"clean": "node ./scripts/clean.js",
2021-11-13 08:02:22 +00:00
"clean-all": "node ./scripts/clean-all.js",
"cleanall": "npm run clean-all"
2017-11-06 10:16:14 +00:00
},
"dependencies": {
2021-07-17 04:43:09 +00:00
"@types/gulp": "4.0.9",
"@types/gulp-rename": "2.0.1",
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": {
"@redocly/openapi-core": "1.0.0-beta.54",
2021-04-25 02:30:02 +00:00
"@types/fluent-ffmpeg": "2.1.17",
2021-08-12 10:05:07 +00:00
"cross-env": "7.0.3",
"cypress": "9.0.0",
2021-09-22 12:51:24 +00:00
"start-server-and-test": "1.14.0"
2017-11-06 10:16:14 +00:00
}
2018-06-11 02:44:26 +00:00
}