2020-10-27 09:54:17 +08:00
|
|
|
{
|
|
|
|
"name": "monkeytype",
|
2020-11-04 08:48:33 +08:00
|
|
|
"version": "1.5.6",
|
2020-10-27 11:08:16 +08:00
|
|
|
"license": "GPL-3.0",
|
2020-11-02 19:35:22 +08:00
|
|
|
"private": true,
|
2020-10-27 09:54:17 +08:00
|
|
|
"scripts": {
|
2022-02-09 03:33:41 +08:00
|
|
|
"start:dev": "concurrently --kill-others \"cd ./frontend && npm run start:dev\" \"cd ./backend && npm run start:dev\"",
|
|
|
|
"start:dev:be": "cd backend && npm run start:dev",
|
|
|
|
"start:dev:fe": "cd frontend && npm run start:dev",
|
2022-02-09 04:27:14 +08:00
|
|
|
"deploy:live": "cd frontend && npm run deploy:live",
|
2022-02-21 05:29:39 +08:00
|
|
|
"install:all": "sh ./bin/install.sh",
|
2022-02-21 04:47:24 +08:00
|
|
|
"install:windows": ".\\bin\\install.cmd",
|
2022-02-23 08:07:48 +08:00
|
|
|
"lint": "eslint \"./backend/**/*.{ts,js}\" \"./frontend/src/scripts/**/*.{ts,js}\"",
|
2022-02-13 02:07:58 +08:00
|
|
|
"build:live": "cd ./frontend && npm run build:live",
|
2022-02-18 06:36:40 +08:00
|
|
|
"pretty": "prettier --check './backend/**/*.js' './frontend/src/**/*.{js,scss}' './frontend/static/**/*.{json,html}'",
|
2022-02-23 03:55:48 +08:00
|
|
|
"start:dev-ts": "concurrently --kill-others \"cd ./frontend && npm run start:dev-ts\" \"cd ./backend && npm run start:dev\"",
|
|
|
|
"start:dev:fe-ts": "cd frontend && npm run start:dev-ts",
|
|
|
|
"deploy:live-ts": "cd frontend && npm run deploy:live-ts",
|
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",
|
2022-02-19 01:14:39 +08:00
|
|
|
"pr-check-scss": "cd frontend && npx gulp pr-check-scss",
|
|
|
|
"pr-check-ts": "cd frontend && npx gulp pr-check-ts"
|
2020-10-27 09:54:17 +08:00
|
|
|
},
|
2020-12-05 22:50:33 +08:00
|
|
|
"engines": {
|
2022-02-08 07:28:56 +08:00
|
|
|
"npm": "8.1.2"
|
2020-12-05 22:50:33 +08:00
|
|
|
},
|
2020-10-27 09:59:02 +08:00
|
|
|
"devDependencies": {
|
2022-02-12 02:02:21 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
|
|
"@typescript-eslint/parser": "^5.11.0",
|
2022-02-12 21:47:36 +08:00
|
|
|
"babel-loader": "^8.2.3",
|
2022-02-09 03:33:41 +08:00
|
|
|
"concurrently": "5.3.0",
|
2022-02-09 04:27:14 +08:00
|
|
|
"eslint": "8.8.0",
|
2022-02-09 03:33:41 +08:00
|
|
|
"eslint-config-standard": "16.0.3",
|
|
|
|
"eslint-formatter-github": "1.0.11",
|
|
|
|
"eslint-plugin-import": "2.23.4",
|
|
|
|
"eslint-plugin-json": "2.1.2",
|
|
|
|
"eslint-plugin-node": "11.1.0",
|
|
|
|
"eslint-plugin-promise": "5.1.0",
|
|
|
|
"eslint-plugin-require-path-exists": "1.1.9",
|
|
|
|
"husky": "4.3.0",
|
2022-02-20 00:44:27 +08:00
|
|
|
"jsonschema": "1.4.0",
|
|
|
|
"prettier": "2.5.1",
|
2022-02-21 04:47:24 +08:00
|
|
|
"pretty-quick": "3.1.0",
|
2022-02-23 03:55:48 +08:00
|
|
|
"typescript": "^4.5.5"
|
2020-10-27 09:59:02 +08:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2022-02-10 00:45:27 +08:00
|
|
|
"pre-commit": "pretty-quick --staged && npm run lint"
|
2020-10-27 09:59:02 +08:00
|
|
|
}
|
2020-10-27 09:54:17 +08:00
|
|
|
}
|
|
|
|
}
|