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-09 05:17:26 +08:00
|
|
|
"install:all": "sh ./bin/install.sh",
|
2022-02-12 23:25:53 +08:00
|
|
|
"lint": "./node_modules/.bin/eslint './backend/**/*.js' './frontend/src/scripts/**/*.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}'",
|
|
|
|
"validate-json-schema": "cd frontend && npx gulp validate-json-schema"
|
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-18 06:36:40 +08:00
|
|
|
"jsonschema": "^1.4.0",
|
2020-10-27 09:59:02 +08:00
|
|
|
"prettier": "2.1.2",
|
2022-02-13 04:02:29 +08:00
|
|
|
"pretty-quick": "3.1.0"
|
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
|
|
|
}
|
|
|
|
}
|