monkeytype/package.json

63 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "monkeytype",
2022-04-21 18:28:30 +08:00
"version": "1.14.3",
2020-10-27 11:08:16 +08:00
"license": "GPL-3.0",
2020-11-02 19:35:22 +08:00
"private": true,
"scripts": {
2022-10-21 20:49:14 +08:00
"prepare": "husky install",
"pre-commit": "lint-staged",
"lint": "npm run lint-be && npm run lint-fe",
"lint-be": "eslint \"./backend/**/*.ts\"",
"lint-fe": "eslint \"./frontend/**/*.ts\"",
2022-05-06 05:11:09 +08:00
"install-all": "sh ./bin/install.sh",
"install-windows": ".\\bin\\install.cmd",
"docker": "cd backend && docker-compose up",
"test-be": "cd backend && npm run test",
2022-05-06 05:25:03 +08:00
"dev": "concurrently --kill-others \"npm run dev-fe\" \"npm run dev-be\"",
2022-05-06 05:11:09 +08:00
"dev-be": "cd backend && npm run dev",
"dev-fe": "cd frontend && npm run dev",
"live": "concurrently --kill-others \"cd frontend && npm run live\" \"cd backend && npm run start\"",
"audit-fe": "cd frontend && npm run audit",
2023-08-11 17:19:31 +08:00
"release": "release-it",
2022-05-06 05:25:03 +08:00
"build-fe": "cd ./frontend && npm run build-live",
"pretty": "prettier --check \"./backend/**/*.{ts,json,js,css,html}\" \"./frontend/**/*.{ts,js,scss}\" \"./frontend/static/**/*.{json,html,css}\"",
"pretty-code": "prettier --check \"./backend/**/*.{ts,js,json,css,html}\" \"./frontend/**/*.{ts,js}\" \"./frontend/src/**/*.scss\"",
"pretty-code-be": "prettier --check \"./backend/**/*.{ts,js,json,css,html}\"",
"pretty-code-fe": "prettier --check \"./frontend/**/*.{ts,js}\" \"./frontend/src/**/*.scss\"",
"pretty-fix": "prettier --write \"./backend/**/*.{ts,json,js,css,html}\" \"./frontend/**/*.{ts,js,scss}\" \"./frontend/static/**/*.{json,html,css}\"",
2022-02-19 02:25:33 +08:00
"pr-check-lint-json": "cd frontend && npx gulp pr-check-lint-json",
"pr-check-quote-json": "cd frontend && npx gulp pr-check-quote-json",
"pr-check-language-json": "cd frontend && npx gulp pr-check-language-json",
"pr-check-other-json": "cd frontend && npx gulp pr-check-other-json",
"pr-check-ts": "cd frontend && npx gulp pr-check-ts",
2022-05-06 05:11:09 +08:00
"pr-check-build-be": "cd backend && npm run build"
},
"engines": {
2023-08-10 23:38:27 +08:00
"node": "18.17.1",
"npm": "9.6.7"
},
"devDependencies": {
2023-08-11 04:51:58 +08:00
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@release-it/conventional-changelog": "7.0.0",
2023-06-16 17:06:00 +08:00
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
2022-06-05 20:41:46 +08:00
"concurrently": "7.2.1",
2023-06-16 17:06:00 +08:00
"eslint": "8.42.0",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-require-path-exists": "1.1.9",
2022-10-21 20:49:14 +08:00
"husky": "8.0.1",
2023-08-11 00:32:33 +08:00
"knip": "2.19.2",
"lint-staged": "13.2.3",
"prettier": "2.5.1",
2023-08-11 17:19:31 +08:00
"release-it": "16.1.4",
"typescript": "4.9.5"
},
"lint-staged": {
"*.{ts,js,json,css,html}": [
"prettier --write",
"eslint"
]
}
}